Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions projects/assets-library/src/icons/icon-type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ export const enum IconType {
Refresh = 'refresh',
Remove = 'remove',
RemoveCircle = 'remove_circle',
Restore = 'restore',
Search = 'svg:search',
Settings = 'settings',
Share = 'share',
Expand Down
2 changes: 1 addition & 1 deletion projects/components/src/select/select.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ export class SelectComponent<V> 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<V>): string[] {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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[] {
Expand Down