diff options
| author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-01-16 22:37:58 -0500 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-16 22:37:58 -0500 | 
| commit | a39eede04ba458b9f198006f62658d9ebb1b970f (patch) | |
| tree | 7f923ff249f45985937e53826c2a39ecc7be8d20 | |
| parent | 86e4e53372003166d013e20d6fc2764bb928c37a (diff) | |
If scopes are now empty but weren't previously, add all valid scopes (#1259)
| -rw-r--r-- | ext/bg/js/settings2/keyboard-shortcuts-controller.js | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/ext/bg/js/settings2/keyboard-shortcuts-controller.js b/ext/bg/js/settings2/keyboard-shortcuts-controller.js index 43dd738e..ea6bd81c 100644 --- a/ext/bg/js/settings2/keyboard-shortcuts-controller.js +++ b/ext/bg/js/settings2/keyboard-shortcuts-controller.js @@ -330,6 +330,9 @@ class KeyboardShortcutHotkeyEntry {                  }              }              if (changed) { +                if (scopes.length === 0) { +                    scopes.push(...validScopes); +                }                  targets.push({                      action: 'set',                      path: `${this._basePath}.scopes`, |