feat: Added per-tag preference to use table layout and removed "Files Table View" from Labs
This commit is contained in:
@@ -186,7 +186,7 @@ function Table<Data>({ table }: { table: Table<Data> }) {
|
||||
break
|
||||
case KeyboardKey.Down:
|
||||
event.preventDefault()
|
||||
if (focusedRowIndex.current < rowCount) {
|
||||
if (focusedRowIndex.current <= rowCount) {
|
||||
const nextRow = focusedRowIndex.current + 1
|
||||
focusCell(nextRow, focusedCellIndex.current)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user