diff --git a/projects/assets-library/src/icons/icon-type.ts b/projects/assets-library/src/icons/icon-type.ts index 946529f72..683c6e3ed 100644 --- a/projects/assets-library/src/icons/icon-type.ts +++ b/projects/assets-library/src/icons/icon-type.ts @@ -97,6 +97,7 @@ export const enum IconType { Refresh = 'refresh', Remove = 'remove', RemoveCircle = 'remove_circle', + Restore = 'restore', Search = 'svg:search', Settings = 'settings', Share = 'share', diff --git a/projects/components/src/select/select.component.ts b/projects/components/src/select/select.component.ts index 3fff380d6..951b027b7 100644 --- a/projects/components/src/select/select.component.ts +++ b/projects/components/src/select/select.component.ts @@ -341,7 +341,7 @@ export class SelectComponent implements ControlValueAccessor, AfterContentIni return undefined; } - return this.items.find(item => item.value === value); + return this.items.find(item => isEqual(item.value, value)); } public getStyleClassesForSelectItem(size: SelectSize, item: SelectOptionComponent): string[] { diff --git a/projects/components/src/table/header/table-header-cell-renderer.component.ts b/projects/components/src/table/header/table-header-cell-renderer.component.ts index 3a321a311..85708732a 100644 --- a/projects/components/src/table/header/table-header-cell-renderer.component.ts +++ b/projects/components/src/table/header/table-header-cell-renderer.component.ts @@ -199,8 +199,8 @@ export class TableHeaderCellRendererComponent implements OnInit, OnChanges { return this.indeterminateRowsSelected ? 'Some rows are selected' : this.allRowsSelected - ? 'All rows in the current page are selected' - : 'None of the rows in the current page are selected'; + ? 'All rows in the table are selected' + : 'None of the rows in the table are selected'; } private buildClasses(): string[] {