From a6ecc5cfeda51781286d013cf3a738b8a3adfdc5 Mon Sep 17 00:00:00 2001 From: Shariq Ansari Date: Tue, 16 Sep 2025 17:20:50 +0530 Subject: [PATCH] refactor: HomeActions component --- frontend/components.d.ts | 2 +- .../src/components/Settings/BrandSettings.vue | 2 +- .../Settings/{General => }/HomeActions.vue | 20 +++++++++---------- 3 files changed, 11 insertions(+), 13 deletions(-) rename frontend/src/components/Settings/{General => }/HomeActions.vue (66%) diff --git a/frontend/components.d.ts b/frontend/components.d.ts index c29ef31b..3b4a8dd4 100644 --- a/frontend/components.d.ts +++ b/frontend/components.d.ts @@ -162,7 +162,7 @@ declare module 'vue' { HelpdeskIcon: typeof import('./src/components/Icons/HelpdeskIcon.vue')['default'] HelpdeskSettings: typeof import('./src/components/Settings/HelpdeskSettings.vue')['default'] HelpIcon: typeof import('./src/components/Icons/HelpIcon.vue')['default'] - HomeActions: typeof import('./src/components/Settings/General/HomeActions.vue')['default'] + HomeActions: typeof import('./src/components/Settings/HomeActions.vue')['default'] Icon: typeof import('./src/components/Icon.vue')['default'] IconPicker: typeof import('./src/components/IconPicker.vue')['default'] ImageUploader: typeof import('./src/components/Controls/ImageUploader.vue')['default'] diff --git a/frontend/src/components/Settings/BrandSettings.vue b/frontend/src/components/Settings/BrandSettings.vue index 35fef496..b5f4ad76 100644 --- a/frontend/src/components/Settings/BrandSettings.vue +++ b/frontend/src/components/Settings/BrandSettings.vue @@ -7,7 +7,7 @@ {{ __('Brand settings') }}

- {{ __('Configure brand settings for your CRM') }} + {{ __('Configure your brand name, logo, and favicon') }}

diff --git a/frontend/src/components/Settings/General/HomeActions.vue b/frontend/src/components/Settings/HomeActions.vue similarity index 66% rename from frontend/src/components/Settings/General/HomeActions.vue rename to frontend/src/components/Settings/HomeActions.vue index 72ecc3ea..58300069 100644 --- a/frontend/src/components/Settings/General/HomeActions.vue +++ b/frontend/src/components/Settings/HomeActions.vue @@ -1,16 +1,14 @@