From 651645fbd2c069b01950ab7ff094ac20f5b49ab2 Mon Sep 17 00:00:00 2001 From: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> Date: Thu, 13 Nov 2025 22:16:13 +0530 Subject: [PATCH 1/3] chore: Update missing places with new colors (#12862) # Pull Request Template ## Description This PR updates the colors in places that were missed during the color update migration. ## Type of change - [x] Bug fix (non-breaking change which fixes an issue) ## Checklist: - [x] My code follows the style guidelines of this project - [x] I have performed a self-review of my code - [ ] I have commented on my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation - [x] My changes generate no new warnings - [ ] I have added tests that prove my fix is effective or that my feature works - [x] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged and published in downstream modules --- .../dashboard/components/ui/Dropdown/DropdownButton.vue | 1 + .../dashboard/routes/dashboard/settings/inbox/FinishSetup.vue | 2 +- .../routes/dashboard/settings/inbox/channels/Whatsapp.vue | 4 ++-- .../settings/inbox/settingsPage/ConfigurationPage.vue | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/app/javascript/dashboard/components/ui/Dropdown/DropdownButton.vue b/app/javascript/dashboard/components/ui/Dropdown/DropdownButton.vue index 7289267c1..5ca8bde2b 100644 --- a/app/javascript/dashboard/components/ui/Dropdown/DropdownButton.vue +++ b/app/javascript/dashboard/components/ui/Dropdown/DropdownButton.vue @@ -23,6 +23,7 @@ defineProps({ slate sm class="relative" + no-animation :icon="icon" :trailing-icon="trailingIcon" > diff --git a/app/javascript/dashboard/routes/dashboard/settings/inbox/FinishSetup.vue b/app/javascript/dashboard/routes/dashboard/settings/inbox/FinishSetup.vue index b19416137..46a189b39 100644 --- a/app/javascript/dashboard/routes/dashboard/settings/inbox/FinishSetup.vue +++ b/app/javascript/dashboard/routes/dashboard/settings/inbox/FinishSetup.vue @@ -197,7 +197,7 @@ onMounted(() => { v-if="shouldShowWhatsAppWebhookDetails" class="w-[50%] max-w-[50%] ml-[25%]" > -
+
{{ $t('INBOX_MGMT.ADD.WHATSAPP.API_CALLBACK.WEBHOOK_URL') }}
+
{{ $t('INBOX_MGMT.ADD.WHATSAPP.SELECT_PROVIDER.DESCRIPTION') }}
+
{{ $t( 'INBOX_MGMT.SETTINGS_POPUP.WHATSAPP_EMBEDDED_SIGNUP_DESCRIPTION' From eed1825d5a3b21d9a2e1b0e829a93a10e2d974e0 Mon Sep 17 00:00:00 2001 From: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> Date: Thu, 13 Nov 2025 22:16:25 +0530 Subject: [PATCH 2/3] fix: Brand installation name not showing (#12861) # Pull Request Template ## Description Fixes https://linear.app/chatwoot/issue/CW-5946/fix-brand-installation-name-issue-in-dyte ## Type of change - [x] Bug fix (non-breaking change which fixes an issue) ## Checklist: - [x] My code follows the style guidelines of this project - [x] I have performed a self-review of my code - [ ] I have commented on my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation - [x] My changes generate no new warnings - [ ] I have added tests that prove my fix is effective or that my feature works - [x] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged and published in downstream modules --- .../routes/dashboard/settings/integrations/NewHook.vue | 6 ++++-- .../settings/integrations/SingleIntegrationHooks.vue | 5 ++++- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/app/javascript/dashboard/routes/dashboard/settings/integrations/NewHook.vue b/app/javascript/dashboard/routes/dashboard/settings/integrations/NewHook.vue index 5fe350215..1a4d36fee 100644 --- a/app/javascript/dashboard/routes/dashboard/settings/integrations/NewHook.vue +++ b/app/javascript/dashboard/routes/dashboard/settings/integrations/NewHook.vue @@ -4,6 +4,7 @@ import { mapGetters } from 'vuex'; import { useAlert } from 'dashboard/composables'; import { useIntegrationHook } from 'dashboard/composables/useIntegrationHook'; import { FormKit } from '@formkit/vue'; +import { useBranding } from 'shared/composables/useBranding'; import NextButton from 'dashboard/components-next/button/Button.vue'; @@ -23,8 +24,9 @@ export default { const { integration, isHookTypeInbox } = useIntegrationHook( props.integrationId ); + const { replaceInstallationName } = useBranding(); - return { integration, isHookTypeInbox }; + return { integration, isHookTypeInbox, replaceInstallationName }; }, data() { return { @@ -117,7 +119,7 @@ export default {
- {{ integration.description }} + {{ replaceInstallationName(integration.description) }}