mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Fix shortcuts
This commit is contained in:
parent
e9e039484c
commit
091e083d09
1 changed files with 2 additions and 2 deletions
|
|
@ -54,12 +54,12 @@ browser.runtime.onMessage.addListener(function(req, sender, callback) {
|
|||
cipForm.destroy(false, {'password': list.list[0], 'username': list.list[1]});
|
||||
}
|
||||
}
|
||||
} else if (req.action === 'fill_user_pass') {
|
||||
} else if (req.action === 'fill_username_password') {
|
||||
_called.manualFillRequested = 'both';
|
||||
cip.receiveCredentialsIfNecessary().then((response) => {
|
||||
cip.fillInFromActiveElement(false);
|
||||
});
|
||||
} else if (req.action === 'fill_pass_only') {
|
||||
} else if (req.action === 'fill_password') {
|
||||
_called.manualFillRequested = 'pass';
|
||||
cip.receiveCredentialsIfNecessary().then((response) => {
|
||||
cip.fillInFromActiveElement(false, true); // passOnly to true
|
||||
|
|
|
|||
Loading…
Reference in a new issue