Skip to content

Commit

Permalink
Merge pull request #36 from Jarva/patch-1
Browse files Browse the repository at this point in the history
fix: default to hiding unavailable actions
  • Loading branch information
Larkinabout authored Apr 23, 2023
2 parents e4c15b1 + f7a7528 commit 316719d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export function register (updateFunc) {
scope: 'client',
config: true,
type: Boolean,
default: true,
default: false,
onChange: (value) => {
updateFunc(value)
}
Expand All @@ -91,7 +91,7 @@ export function register (updateFunc) {
scope: 'client',
config: true,
type: Boolean,
default: true,
default: false,
onChange: (value) => {
updateFunc(value)
}
Expand Down

0 comments on commit 316719d

Please sign in to comment.