From 8fe6389bae9469784bbbf1ee7e7e6236e9884fce Mon Sep 17 00:00:00 2001 From: Alexander Platov Date: Fri, 3 Dec 2021 12:04:35 +0300 Subject: [PATCH] Add Create application icon, Panel header update (#504) Signed-off-by: Alexander Platov --- models/recruit/src/index.ts | 4 ++-- packages/panel/src/components/Panel.svelte | 16 ++++++++-------- .../src/components/Activity.svelte | 2 +- plugins/recruit-assets/assets/icons.svg | 5 +++++ plugins/recruit-assets/src/index.ts | 1 + plugins/recruit/src/index.ts | 3 ++- .../src/components/Chat.svelte | 2 +- plugins/workbench-assets/lang/en.json | 4 +++- .../src/components/Workbench.svelte | 13 ++++++++++--- plugins/workbench-resources/src/plugin.ts | 4 +++- 10 files changed, 36 insertions(+), 18 deletions(-) diff --git a/models/recruit/src/index.ts b/models/recruit/src/index.ts index a8869a0ea7..26c61fd47a 100644 --- a/models/recruit/src/index.ts +++ b/models/recruit/src/index.ts @@ -214,8 +214,8 @@ export function createModel (builder: Builder): void { }) builder.createDoc(view.class.Action, core.space.Model, { - label: 'Create Application' as IntlString, - icon: view.icon.Table, + label: 'Create application' as IntlString, + icon: recruit.icon.Create, action: recruit.actionImpl.CreateApplication }, recruit.action.CreateApplication) diff --git a/packages/panel/src/components/Panel.svelte b/packages/panel/src/components/Panel.svelte index 8169eae165..a6fd55b505 100644 --- a/packages/panel/src/components/Panel.svelte +++ b/packages/panel/src/components/Panel.svelte @@ -16,11 +16,11 @@