From b49a9d4b0cac7ca73037d27e4217636748f0c42a Mon Sep 17 00:00:00 2001 From: MarsCandyBars <63179967+MarsCandyBars@users.noreply.github.com> Date: Fri, 5 Dec 2025 09:10:05 -0600 Subject: [PATCH] [AC-1159] Fix disabledSso duplicate event log (#17596) * fixed disabledSso duplicate message * Add ssoTurnedOff entry * Revise to only add new key --- apps/web/src/app/core/event.service.ts | 2 +- apps/web/src/locales/en/messages.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/web/src/app/core/event.service.ts b/apps/web/src/app/core/event.service.ts index 05a7f5aa64c..55d5524c2fa 100644 --- a/apps/web/src/app/core/event.service.ts +++ b/apps/web/src/app/core/event.service.ts @@ -372,7 +372,7 @@ export class EventService { msg = humanReadableMsg = this.i18nService.t("enabledSso"); break; case EventType.Organization_DisabledSso: - msg = humanReadableMsg = this.i18nService.t("disabledSso"); + msg = humanReadableMsg = this.i18nService.t("ssoTurnedOff"); break; case EventType.Organization_EnabledKeyConnector: msg = humanReadableMsg = this.i18nService.t("enabledKeyConnector"); diff --git a/apps/web/src/locales/en/messages.json b/apps/web/src/locales/en/messages.json index 5f404463d66..b925f3a4198 100644 --- a/apps/web/src/locales/en/messages.json +++ b/apps/web/src/locales/en/messages.json @@ -7158,8 +7158,8 @@ "enabledSso": { "message": "SSO turned on" }, - "disabledSso": { - "message": "SSO turned on" + "ssoTurnedOff": { + "message": "SSO turned off" }, "emailMustLoginWithSso": { "message": "$EMAIL$ must login with Single Sign-on",