1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-10 13:23:34 +00:00

[SG-900] Autofill callout updates (#4738)

* Updated messages

* Implement method in platformUtils to get autofill command

* Updates to callout in current tab component

* Add autofill keyboard shortcut to autofill settings

* style updates

* Add routing animation for autofill settings

* Remove extra function

* Remove unnecessary safari logic

* Remove autofill settings transition added in another PR

* Fix callout still present after clicking 'Got it' (#4797)

---------

Co-authored-by: Jared Snider <116684653+JaredSnider-Bitwarden@users.noreply.github.com>
This commit is contained in:
Robyn MacCallum
2023-02-17 14:38:22 -05:00
committed by GitHub
parent 4780a9ce18
commit 999a40e755
12 changed files with 162 additions and 45 deletions

View File

@@ -150,4 +150,8 @@ export class CliPlatformUtilsService implements PlatformUtilsService {
supportsSecureStorage(): boolean {
return false;
}
getAutofillKeyboardShortcut(): Promise<string> {
return null;
}
}