mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[ADF-2353] replaced datatable with mat-list (#3085)
* [ADF-2353] replaced datatable with mat-list * [ADF-2353] fixed test for the new mat-list comment
This commit is contained in:
@@ -22,6 +22,7 @@ export class CommentProcessModel implements CommentRepresentation {
|
||||
message: string;
|
||||
created: Date;
|
||||
createdBy: LightUserRepresentation;
|
||||
isSelected: boolean;
|
||||
|
||||
constructor(obj?: any) {
|
||||
if (obj) {
|
||||
@@ -29,6 +30,7 @@ export class CommentProcessModel implements CommentRepresentation {
|
||||
this.message = obj.message;
|
||||
this.created = obj.created;
|
||||
this.createdBy = obj.createdBy;
|
||||
this.isSelected = obj.isSelected ? obj.isSelected : false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user