[ACA-3107] add possibility to hide task name from the sidenav (#5883)

* [ACA-3107] add possibility to hide task name from the sidenav

* add unit tesT

* add task header spinner

* update documentation

* fix unit test

* change expect

* add another check

* replace expect condition

* additional expect

* use ToBeTruthy

* simplify expect

* add unit tesT

* add task header spinner

* fix unit test

* change expect

* add another check

* additional expect

* use ToBeTruthy

* simplify expect

Co-authored-by: Silviu Popa <p3701014@L3700101120.ness.com>
This commit is contained in:
Silviu Popa
2020-07-27 14:12:44 +03:00
committed by GitHub
parent 6fa62fd62d
commit 7399704d57
5 changed files with 42 additions and 1 deletions

View File

@@ -50,6 +50,10 @@ export class TaskHeaderCloudComponent implements OnInit, OnDestroy, OnChanges {
@Input()
taskId: string;
/** Show/Hide the task title */
@Input()
showTitle: boolean = true;
/** Emitted when the task is claimed. */
@Output()
claim: EventEmitter<any> = new EventEmitter<any>();