mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-09-17 14:21:29 +00:00
[MNT-22003] - fixed check on variable for visibility service (#6306)
* [MNT-22003] - fixed check on variable for visibility service * [MNT-22003] - update variable for test * [MNT-22003] - added extra unit test for checking the process variable passed Co-authored-by: Vito Albano <vitoalbano@vitoalbano-mbp-0120.local>
This commit is contained in:
@@ -18,8 +18,12 @@
|
||||
export class TaskVariableCloud {
|
||||
name: string;
|
||||
value: any;
|
||||
type: string;
|
||||
id: string;
|
||||
constructor(obj) {
|
||||
this.id = obj.name || null;
|
||||
this.name = obj.name || null;
|
||||
this.value = obj.value || null;
|
||||
this.type = obj.type || null;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user