Merge pull request #237 from nokazn/fix-timepicker-error

fix timepicker error
This commit is contained in:
Aresn 2019-12-16 14:41:18 +08:00 committed by GitHub
commit 0c756987ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -532,8 +532,9 @@
const pickerPossibleValues = timePickers[pickerIndex][`${timeParts[col]}List`];
const nextIndex = pickerPossibleValues.findIndex(({text}) => this.focusedTime.time[pickerIndex][col] === text) + increment;
const nextValue = pickerPossibleValues[nextIndex % pickerPossibleValues.length].text;
const currentIndex = pickerPossibleValues.findIndex(({text}) => this.focusedTime.time[pickerIndex][col] === text);
const nextIndex = (currentIndex + increment + pickerPossibleValues.length) % pickerPossibleValues.length;
const nextValue = pickerPossibleValues[nextIndex].text;
const times = this.focusedTime.time.map((time, i) => {
if (i !== pickerIndex) return time;
time[col] = nextValue;