We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da2ba04 commit 896ebe0Copy full SHA for 896ebe0
lib/editor/selectors/timetable.js
@@ -150,7 +150,7 @@ const isCellValueInvalid = (
150
let previousValue = null
151
let previousIndex = colIndex - 1
152
// Find previous stop time
153
- while (previousValue === null && previousIndex >= 0 && columns[previousIndex].type !== 'TEXT') {
+ while (previousValue === null && previousIndex >= 0 && (columns[previousIndex].type === 'ARRIVAL_TIME' || columns[previousIndex].type === 'DEPARTURE_TIME')) {
154
const previousCol = columns[previousIndex]
155
previousValue = previousCol && row && objectPath.get(row, previousCol.key)
156
previousIndex--
0 commit comments