From 0cb056a369e175f60a3f093d285563f5c022bec3 Mon Sep 17 00:00:00 2001 From: luisa-beerboom <101706784+luisa-beerboom@users.noreply.github.com> Date: Wed, 26 Jul 2023 15:40:03 +0200 Subject: [PATCH] Make deselect all also deselect filtered list items (#2545) --- .../components/scrolling-table/scrolling-table.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/app/ui/modules/scrolling-table/components/scrolling-table/scrolling-table.component.ts b/client/src/app/ui/modules/scrolling-table/components/scrolling-table/scrolling-table.component.ts index 6f4efba402..0c7ac2101a 100644 --- a/client/src/app/ui/modules/scrolling-table/components/scrolling-table/scrolling-table.component.ts +++ b/client/src/app/ui/modules/scrolling-table/components/scrolling-table/scrolling-table.component.ts @@ -174,7 +174,7 @@ export class ScrollingTableComponent>> } public deselectAll(): void { - this.changeSelection(this._source, false); + this.changeSelection(this._fullSource, false); } private select(rows: T[]): void {