From f07957bc743fc96b7610cf05182fe7dd63b7f7e4 Mon Sep 17 00:00:00 2001 From: Dan Percic Date: Mon, 10 May 2021 09:17:12 +0300 Subject: [PATCH] fix not implemented --- .../src/app/modules/shared/base/base-listing.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/red-ui/src/app/modules/shared/base/base-listing.component.ts b/apps/red-ui/src/app/modules/shared/base/base-listing.component.ts index 7a578b694..ec0921270 100644 --- a/apps/red-ui/src/app/modules/shared/base/base-listing.component.ts +++ b/apps/red-ui/src/app/modules/shared/base/base-listing.component.ts @@ -154,7 +154,7 @@ export abstract class BaseListingComponent { } protected _updateSelection() { - if (this._getSelectionKey) { + if (this._selectionKey) { this.selectedEntitiesIds = this.displayedEntities .map((entity) => entity[this._getSelectionKey]) .filter((id) => this.selectedEntitiesIds.includes(id));