Skip to content

Commit

Permalink
fix(OptionSyncInterval): Allow setting to 5min
Browse files Browse the repository at this point in the history
fixes #1414
  • Loading branch information
marcelklehr committed Dec 6, 2023
1 parent b778ebd commit 079bc4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/components/OptionSyncInterval.vue
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export default {
const newDelta = Math.abs(value - this.value)
if (currentDelta > newDelta) return index
else return closestIndex
}, 0) || this.syncIntervalSteps.indexOf(15)
}, 0)
},
syncIntervalStep(step) {
this.$emit('input', this.syncIntervalSteps[step])
Expand Down

0 comments on commit 079bc4f

Please sign in to comment.