Skip to content

Commit 8dd9d87

Browse files
committed
Merge branch 'master' into TT-443-Start-TimeEntry-With-TimeClock
2 parents a13fb90 + 15e405d commit 8dd9d87

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "time-tracker",
3-
"version": "1.54.1",
3+
"version": "1.54.2",
44
"scripts": {
55
"preinstall": "npx npm-force-resolutions",
66
"ng": "ng",

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)