1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-11-10 09:59:48 +01:00

[AC-1233] Fix description of auto-fill on page load policy (#5161)

This commit is contained in:
Thomas Rittson 2023-04-07 07:55:55 +10:00 committed by GitHub
parent cf2d8b266a
commit 94db1db432
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

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

View File

@ -9,7 +9,7 @@ import {
export class ActivateAutofillPolicy extends BasePolicy { export class ActivateAutofillPolicy extends BasePolicy {
name = "activateAutofill"; name = "activateAutofill";
description = "activateAutofillDesc"; description = "activateAutofillPolicyDesc";
type = PolicyType.ActivateAutofill; type = PolicyType.ActivateAutofill;
component = ActivateAutofillPolicyComponent; component = ActivateAutofillPolicyComponent;