Remove sidebar functionality from task details (#2719)

This commit is contained in:
Popovics András
2017-11-23 19:42:50 +00:00
committed by Eugenio Romano
parent 440759c66b
commit 16428a8109
4 changed files with 6 additions and 27 deletions

View File

@@ -67,9 +67,6 @@ export class TaskDetailsComponent implements OnInit, OnChanges {
@Input()
showHeader: boolean = true;
@Input()
showHeaderContent: boolean = true;
@Input()
showInvolvePeople: boolean = true;
@@ -323,10 +320,6 @@ export class TaskDetailsComponent implements OnInit, OnChanges {
this.loadDetails(taskId);
}
toggleHeaderContent(): void {
this.showHeaderContent = !this.showHeaderContent;
}
isCompletedTask(): boolean {
return this.taskDetails && this.taskDetails.endDate ? true : undefined;
}