Skip to content

Commit 079bc4f

Browse files
committed
fix(OptionSyncInterval): Allow setting to 5min
fixes #1414
1 parent b778ebd commit 079bc4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ui/components/OptionSyncInterval.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export default {
5353
const newDelta = Math.abs(value - this.value)
5454
if (currentDelta > newDelta) return index
5555
else return closestIndex
56-
}, 0) || this.syncIntervalSteps.indexOf(15)
56+
}, 0)
5757
},
5858
syncIntervalStep(step) {
5959
this.$emit('input', this.syncIntervalSteps[step])

0 commit comments

Comments
 (0)