[ADF-3009] Start task with due date error fix (#3836)

* [adf-3009] Date picker checked on Start Task Component

* [ADF-3009] Event trigger changed

* [ADF-3009] Event in mat-datepicker restored

* [ADF-3009] Error bug on wrong date format fix

* [ADF-3009] Start task with due date error fix
This commit is contained in:
davidcanonieto
2018-09-27 14:28:01 +01:00
committed by Eugenio Romano
parent 6c6bb18d1d
commit 1152b10888
2 changed files with 9 additions and 1 deletions

View File

@@ -178,4 +178,10 @@ export class StartTaskComponent implements OnInit {
}
}
}
clearDateInput() {
const emptyValue = '';
this.startTaskmodel.dueDate = emptyValue;
this.onDateChanged(emptyValue);
}
}