We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96fa085 commit 8e4f4e5Copy full SHA for 8e4f4e5
evap/static/ts/src/datagrid.ts
@@ -160,7 +160,8 @@ abstract class DataGrid {
160
for (const [column, ordering] of this.state.order) {
161
const header = this.sortableHeaders.get(column);
162
if (header === undefined) {
163
- // Silently ignore non-existing columns: They were probably renamed, users will have to rebuild their localstorage entry
+ // Silently ignore non-existing columns: They were probably renamed.
164
+ // A correct state will be built the next time the user sorts the datagrid.
165
continue;
166
}
167
header.classList.add(`col-order-${ordering}`);
0 commit comments