diff options
Diffstat (limited to 'src/components/scope_selector')
| -rw-r--r-- | src/components/scope_selector/scope_selector.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/components/scope_selector/scope_selector.js b/src/components/scope_selector/scope_selector.js index 578f1ba5..4693d066 100644 --- a/src/components/scope_selector/scope_selector.js +++ b/src/components/scope_selector/scope_selector.js @@ -1,7 +1,6 @@ const ScopeSelector = { props: [ 'showAll', - 'userEnabled', 'userDefault', 'originalScope', 'initialScope', @@ -43,7 +42,7 @@ const ScopeSelector = { this.currentScope === scope || this.originalScope === scope || this.userDefault === scope || - this.userEnabled.includes(scope) + 'direct' === scope }, changeVis (scope) { this.currentScope = scope |
