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

This commit is contained in:
Vito
2017-06-22 19:18:58 +02:00
committed by Eugenio Romano
parent c8f332e9e7
commit 820486bffc
@@ -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();
}