Skip to content

Commit

Permalink
prettyfied
Browse files Browse the repository at this point in the history
  • Loading branch information
HelgeKeck committed Sep 21, 2023
1 parent b853df3 commit 4070fba
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/components/webcams/MjpegstreamerAdaptive.vue
Original file line number Diff line number Diff line change
Expand Up @@ -642,7 +642,12 @@ export default class MjpegstreamerAdaptive extends Mixins(BaseMixin, WebcamMixin
get XYMoveOutput() {
if (this.xyMove && !this.isPrinting && this.homedAxes.includes('xyz')) {
return 'Y:' + this.gcodePositions.x.toFixed(5).toString() + ' - X:' + this.gcodePositions.y.toFixed(5).toString()
return (
'Y:' +
this.gcodePositions.x.toFixed(5).toString() +
' - X:' +
this.gcodePositions.y.toFixed(5).toString()
)
}
return 'MOVE'
}
Expand Down

0 comments on commit 4070fba

Please sign in to comment.