Skip to content

Commit

Permalink
Fix toggle
Browse files Browse the repository at this point in the history
  • Loading branch information
cmdcolin committed Feb 13, 2021
1 parent 53e6cc6 commit ac99b5c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,10 @@ const stateModelFactory = (
}))
.actions(self => ({
toggleDrawIndicators() {
self.drawIndicators = !self.drawIndicators
self.drawIndicators = !self.drawIndicatorsSetting
},
toggleDrawInterbaseFuzz() {
self.drawInterbaseFuzz = !self.drawInterbaseFuzz
self.drawInterbaseFuzz = !self.drawInterbaseFuzzSetting
},
}))

Expand Down

0 comments on commit ac99b5c

Please sign in to comment.