1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-08 04:33:38 +00:00

[PM-16863] Update "auto-fill" to "autofill" for org policies (#18483)

* Fixes typo in messages.json from auto-fill to autofill to match company preference

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

* Fix my typo
This commit is contained in:
Jared
2026-01-27 13:31:02 -05:00
committed by GitHub
parent 3e344212d6
commit 42aec64689
2 changed files with 3 additions and 3 deletions

View File

@@ -6928,8 +6928,8 @@
"activateAutofill": {
"message": "Activate auto-fill"
},
"activateAutofillPolicyDesc": {
"message": "Activate the auto-fill on page load setting on the browser extension for all existing and new members."
"activateAutofillPolicyDescription": {
"message": "Activate the autofill on page load setting on the browser extension for all existing and new members."
},
"experimentalFeature": {
"message": "Compromised or untrusted websites can exploit auto-fill on page load."

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;