Skip to content

Commit

Permalink
fix: Incorrect sum of rest jobs printing time (#1689)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdziekon authored Dec 16, 2023
1 parent eb7773d commit c92f4c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/panels/Status/Jobqueue.vue
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export default class StatusPanelJobqueue extends Mixins(BaseMixin) {
if (item.metadata?.filament_total) filamentLength += item.metadata?.filament_total * count
if (item.metadata?.filament_weight_total) filamentWeight += item.metadata?.filament_weight_total * count
if (item.metadata?.estimated_time) printTime = item.metadata.estimated_time * count
if (item.metadata?.estimated_time) printTime += item.metadata.estimated_time * count
})
let output = ''
Expand Down

0 comments on commit c92f4c0

Please sign in to comment.