1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-06-25 10:25:36 +02: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": {
"message": "Activate auto-fill"
},
"activateAutofillDesc": {
"message": "Activate the auto-fill with page load settings on the browser extension for all existing and new members."
"activateAutofillPolicyDesc": {
"message": "Activate the auto-fill 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

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