mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[ADF-2614] Edit icon misses in Info-drawer Assignee (#3145)
* [DW-488] Edit icon misses in Info-drawer Assignee * * Added unit testcases for the recent changes . * * Updated card-view doc for the recent changes made. * * Fixed failing taskHeader testcases
This commit is contained in:
@@ -24,6 +24,7 @@ export abstract class CardViewBaseItemModel {
|
||||
default: any;
|
||||
editable: boolean;
|
||||
clickable: boolean;
|
||||
icon?: string;
|
||||
validators?: CardViewItemValidator[];
|
||||
|
||||
constructor(obj: CardViewItemProperties) {
|
||||
@@ -33,6 +34,7 @@ export abstract class CardViewBaseItemModel {
|
||||
this.default = obj.default;
|
||||
this.editable = !!obj.editable;
|
||||
this.clickable = !!obj.clickable;
|
||||
this.icon = obj.icon || '';
|
||||
this.validators = obj.validators || [];
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user