1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-06 00:13:28 +00:00

[AC-1159] Fix disabledSso duplicate event log (#17596)

* fixed disabledSso duplicate message

* Add ssoTurnedOff entry

* Revise to only add new key
This commit is contained in:
MarsCandyBars
2025-12-05 09:10:05 -06:00
committed by GitHub
parent bbea11388a
commit b49a9d4b0c
2 changed files with 3 additions and 3 deletions

View File

@@ -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");

View File

@@ -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",