[ADF-842] Fixed type for taskdetails (#2009)

This commit is contained in:
Vito
2017-06-29 15:09:23 +01:00
committed by Eugenio Romano
parent 88114952c2
commit d61ed8087d
@@ -231,7 +231,7 @@ export class ActivitiTaskDetails implements OnInit, OnChanges {
this.activitiTaskList.getTasks(requestNode).subscribe(
(response) => {
if (response && response.length > 0) {
this.taskDetails = response[0];
this.taskDetails = <TaskDetailsModel>response[0];
} else {
this.reset();
}