Skip to content

Commit

Permalink
remove deprecated clearSelectionFilter
Browse files Browse the repository at this point in the history
  • Loading branch information
jmhauck committed Nov 18, 2024
1 parent 601daaa commit 486865a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/layer-table/layer-table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2055,7 +2055,7 @@ export class LayerTable {
try {
this._loaded = true;
this._table.highlightIds.removeAll();
this._table.clearSelectionFilter();
(this._table as any).objectIds.removeAll();
this._resetColumnTemplates();
this._showOnlySelected = false;
await this._handleDefaults();
Expand Down Expand Up @@ -2402,7 +2402,7 @@ export class LayerTable {
if (this._showOnlySelected) {
this._table.filterBySelection();
} else {
this._table.clearSelectionFilter();
(this._table as any).objectIds.removeAll();
}
}

Expand Down

0 comments on commit 486865a

Please sign in to comment.