diff --git a/apps/browser/src/_locales/en/messages.json b/apps/browser/src/_locales/en/messages.json index 9a97e79cbe..1b8c6315be 100644 --- a/apps/browser/src/_locales/en/messages.json +++ b/apps/browser/src/_locales/en/messages.json @@ -2202,5 +2202,8 @@ "example": "CTRL+Shift+L" } } + }, + "opensInANewWindow": { + "message": "Opens in a new window" } } diff --git a/apps/browser/src/popup/settings/autofill.component.html b/apps/browser/src/popup/settings/autofill.component.html index a3ff193671..21ad160d06 100644 --- a/apps/browser/src/popup/settings/autofill.component.html +++ b/apps/browser/src/popup/settings/autofill.component.html @@ -28,7 +28,17 @@ {{ "enableAutoFillOnPageLoadDesc" | i18n }} {{ "warning" | i18n }}: {{ "experimentalFeature" | i18n }} - {{ "learnMoreAboutAutofill" | i18n }} + + {{ "learnMoreAboutAutofill" | i18n }}. + +
diff --git a/apps/browser/src/popup/settings/autofill.component.ts b/apps/browser/src/popup/settings/autofill.component.ts index 9e134c43a8..05975e6092 100644 --- a/apps/browser/src/popup/settings/autofill.component.ts +++ b/apps/browser/src/popup/settings/autofill.component.ts @@ -63,10 +63,6 @@ export class AutofillComponent implements OnInit { await this.stateService.setDefaultUriMatch(this.defaultUriMatch); } - AboutAutofill() { - BrowserApi.createNewTab("https://bitwarden.com/help/auto-fill-browser/"); - } - private async setAutofillKeyboardHelperText(command: string) { if (command) { this.autofillKeyboardHelperText = this.i18nService.t("autofillShortcutText", command);