Skip to content

Commit

Permalink
hotfix: fix printTime nullref error
Browse files Browse the repository at this point in the history
  • Loading branch information
davidzwa committed Oct 23, 2024
1 parent 03d47e7 commit af515b5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions RELEASE_NOTES.MD
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## Client develop

## Client 23/10/2024 1.5.19 - Hotfix release

Hotfixes:

- Hotfix: fix printTime nullref error causes continuous errors

## Client 22/06/2024 1.5.18

Fixes:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fdm-monster/client",
"version": "1.5.18",
"version": "1.5.19",
"author": "David Zwart",
"license": "AGPL-3.0-or-later",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion src/components/Generic/PrintJobsMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
</v-list-item-title>
<v-list-item-subtitle>
Elapsed:
<strong>{{ Math.round(job?.progress.printTime / 60) }} minutes</strong>
<strong>{{ Math.round(job?.progress?.printTime / 60) }} minutes</strong>
<br />
Printer: <strong>{{ printer.name }}</strong>
</v-list-item-subtitle>
Expand Down

0 comments on commit af515b5

Please sign in to comment.