Merge pull request #1356 from bitwarden/feature/701-safari-autofill-cmd-binding

Added Cmd+Shift+P for autofill in safari
This commit is contained in:
Chad Scharf 2020-08-12 17:25:30 -04:00 committed by GitHub
commit f158661afa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ document.addEventListener('DOMContentLoaded', (event) => {
let autofillCommand = ['mod+shift+l'];
if (isSafari) {
autofillCommand = ['mod+\\', 'mod+8'];
autofillCommand = ['mod+\\', 'mod+8', 'mod+shift+p'];
} else if (isEdge) {
autofillCommand = ['mod+\\', 'mod+9'];
}