Skip to content

Commit 592579c

Browse files
authored
fix: TT-457 solution bug Checkbox "I am working on this" (#776)
1 parent 3e32610 commit 592579c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/modules/shared/components/details-fields/details-fields.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ export class DetailsFieldsComponent implements OnChanges, OnInit {
176176
}
177177

178178
ngOnChanges(): void {
179-
this.goingToWorkOnThis = this.entryToEdit ? this.entryToEdit.running ?? true : false;
179+
this.goingToWorkOnThis = this.entryToEdit?.running ? true : false;
180180
this.shouldRestartEntry = false;
181181
this.getRecentProjects();
182182
if (this.entryToEdit) {

0 commit comments

Comments
 (0)