From d5286c95354050fd796d36691b3fcfb7061aa29b Mon Sep 17 00:00:00 2001 From: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> Date: Wed, 6 Aug 2025 13:11:22 +0530 Subject: [PATCH] fix: Installation name not showing (#12096) --- .../dashboard/components/ui/Wizard.vue | 4 - .../widget-preview/components/Widget.vue | 14 ++- .../dashboard/settings/inbox/ChannelList.vue | 16 ++-- .../settings/inbox/InboxChannels.vue | 14 +-- .../settings/inbox/channels/Facebook.vue | 22 ++--- .../settings/inbox/channels/Instagram.vue | 2 - .../integrations/DashboardApps/Index.vue | 2 - .../dashboard/settings/integrations/Index.vue | 6 +- .../settings/integrations/Integration.vue | 11 +-- .../settings/integrations/IntegrationItem.vue | 6 +- .../settings/integrations/ShowIntegration.vue | 3 - .../Slack/SelectChannelWarning.vue | 12 +-- .../settings/integrations/Webhooks/Index.vue | 7 +- .../integrations/Webhooks/NewWebHook.vue | 15 +-- .../dashboard/settings/profile/Index.vue | 16 ++-- app/javascript/shared/components/Branding.vue | 11 ++- .../composables/specs/useBranding.spec.js | 96 +++++++++++++++++++ .../shared/composables/useBranding.js | 26 +++++ .../shared/mixins/globalConfigMixin.js | 12 --- .../v3/views/auth/reset/password/Index.vue | 17 +--- app/javascript/v3/views/auth/signup/Index.vue | 14 ++- .../auth/signup/components/Signup/Form.vue | 2 - app/javascript/v3/views/login/Index.vue | 14 +-- 23 files changed, 215 insertions(+), 127 deletions(-) create mode 100644 app/javascript/shared/composables/specs/useBranding.spec.js create mode 100644 app/javascript/shared/composables/useBranding.js delete mode 100644 app/javascript/shared/mixins/globalConfigMixin.js diff --git a/app/javascript/dashboard/components/ui/Wizard.vue b/app/javascript/dashboard/components/ui/Wizard.vue index 2219a07c1..6ab196d9d 100644 --- a/app/javascript/dashboard/components/ui/Wizard.vue +++ b/app/javascript/dashboard/components/ui/Wizard.vue @@ -1,9 +1,5 @@