diff options
author | siikamiika <siikamiika@users.noreply.github.com> | 2020-01-26 02:11:48 +0200 |
---|---|---|
committer | siikamiika <siikamiika@users.noreply.github.com> | 2020-02-09 21:51:33 +0200 |
commit | 222f869c842b13d4bc7464a8fa2cceff6f64fa00 (patch) | |
tree | af699b0867c6314d6cd5a4a0e8c392c6b527d46a /ext/bg/js | |
parent | 939ad42dacfeff566497f3c2f8e9c64d59b8168d (diff) |
fix search page hotkey
Diffstat (limited to 'ext/bg/js')
-rw-r--r-- | ext/bg/js/backend.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/bg/js/backend.js b/ext/bg/js/backend.js index 407dc965..d80e7713 100644 --- a/ext/bg/js/backend.js +++ b/ext/bg/js/backend.js @@ -600,7 +600,7 @@ class Backend { // Command handlers async _onCommandSearch(params) { - const {mode, query} = params || {}; + const {mode, query} = params || {mode: 'sameTab'}; const options = await this.getOptions(this.optionsContext); const {popupWidth, popupHeight} = options.general; |