Skip to content

Commit

Permalink
Make deselect all also deselect filtered list items (#2545)
Browse files Browse the repository at this point in the history
  • Loading branch information
luisa-beerboom authored Jul 26, 2023
1 parent 7cfa3c5 commit 0cb056a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ export class ScrollingTableComponent<T extends Partial<Mutable<Identifiable>>>
}

public deselectAll(): void {
this.changeSelection(this._source, false);
this.changeSelection(this._fullSource, false);
}

private select(rows: T[]): void {
Expand Down

0 comments on commit 0cb056a

Please sign in to comment.