Skip to content

Commit 8e4f4e5

Browse files
PR review
1 parent 96fa085 commit 8e4f4e5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

evap/static/ts/src/datagrid.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,8 @@ abstract class DataGrid {
160160
for (const [column, ordering] of this.state.order) {
161161
const header = this.sortableHeaders.get(column);
162162
if (header === undefined) {
163-
// Silently ignore non-existing columns: They were probably renamed, users will have to rebuild their localstorage entry
163+
// Silently ignore non-existing columns: They were probably renamed.
164+
// A correct state will be built the next time the user sorts the datagrid.
164165
continue;
165166
}
166167
header.classList.add(`col-order-${ordering}`);

0 commit comments

Comments
 (0)