Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: TT-457 solution bug Checkbox "I am working on this"
  • Loading branch information
ararcos committed Dec 17, 2021
commit 2c03f75f4f07de1a79880860278413f61ac126dc
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ export class DetailsFieldsComponent implements OnChanges, OnInit {
}

ngOnChanges(): void {
this.goingToWorkOnThis = this.entryToEdit ? this.entryToEdit.running ?? true : false;
this.goingToWorkOnThis = this.entryToEdit?.running ? true : false;
this.shouldRestartEntry = false;
this.getRecentProjects();
if (this.entryToEdit) {
Expand Down