1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-29 15:53:45 +00:00

Strings have to be immutable as learned from Brandon. Trying to delete old key-value pair to see if that's possible

This commit is contained in:
JaredScar
2026-01-21 15:21:10 -05:00
parent 3e16a9939d
commit 694e295a05
2 changed files with 2 additions and 2 deletions

View File

@@ -6891,7 +6891,7 @@
"activateAutofill": {
"message": "Activate auto-fill"
},
"activateAutofillPolicyDesc": {
"activeAutofillPolicyDescription": {
"message": "Activate the autofill on page load setting on the browser extension for all existing and new members."
},
"experimentalFeature": {

View File

@@ -12,7 +12,7 @@ import { SharedModule } from "@bitwarden/web-vault/app/shared";
export class ActivateAutofillPolicy extends BasePolicyEditDefinition {
name = "activateAutofill";
description = "activateAutofillPolicyDesc";
description = "activateAutofillPolicyDescription";
type = PolicyType.ActivateAutofill;
component = ActivateAutofillPolicyComponent;