Revert "[ACS-8113] UX bug - Checkbox selections checked state should be Hyland blue not green- edit summary (#3908)" (#3918)

* Revert "[ACS-8113] UX bug - Checkbox selections checked state should be Hyland blue not green- edit summary (#3908)"

This reverts commit 457ddb2e39.

* [ci:force]
This commit is contained in:
Pablo Martinez
2024-07-04 09:17:19 +02:00
committed by GitHub
parent 457ddb2e39
commit 4f5aa2a0e5
18 changed files with 12 additions and 191 deletions

View File

@@ -70,7 +70,6 @@ export abstract class PageComponent implements OnInit, OnDestroy, OnChanges {
filterSorting = 'name-asc';
createActions: Array<ContentActionRef> = [];
isSmallScreen = false;
selectedRowItemsCount = 0;
protected extensions = inject(AppExtensionService);
protected content = inject(DocumentBasePageService);
@@ -163,10 +162,6 @@ export abstract class PageComponent implements OnInit, OnDestroy, OnChanges {
}
}
onSelectedItemsCountChanged(count: number) {
this.selectedRowItemsCount = count;
}
getParentNodeId(): string {
return this.node ? this.node.id : null;
}