Skip to content
This repository was archived by the owner on May 31, 2025. It is now read-only.

Commit bb2b650

Browse files
authored
Version 3.1.0
1 parent 0a8a18f commit bb2b650

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/utils/dntablemanager.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export class DNTableManager {
1919
}
2020
} else {
2121
for (let i = 0; i < cells.length; i++) {
22-
const colIndex = i % 5; // 5 columns of navigator
22+
const colIndex = i % 6; // 6 columns of navigator
2323
const columnName = this.getColumnNames()[colIndex];
2424
if (columnNames.includes(columnName)) {
2525
cells[i].classList.add('dn-hidden');
@@ -31,6 +31,6 @@ export class DNTableManager {
3131
}
3232

3333
getColumnNames(): string[] {
34-
return ['name', 'path', 'size', 'date', 'tags'];
34+
return ['name', 'ext', 'path', 'size', 'date', 'tags'];
3535
}
3636
}

0 commit comments

Comments
 (0)