Skip to content

Commit

Permalink
fixed missing declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
FatalBulletHit committed Aug 18, 2024
1 parent 0d2794d commit 8326ee0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/dialogs/CancelJobDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,10 @@ export default class CancelJobDialog extends Mixins(BaseMixin) {
@Prop({ type: Boolean, default: false }) showDialog!: boolean
cancelJob(): void {
cancelJob() {
this.$socket.emit('printer.print.cancel', {}, { loading: 'statusPrintCancel' })
this.closePrompt()
}
closePrompt() {
Expand Down
1 change: 1 addition & 0 deletions src/components/panels/StatusPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@ export default class StatusPanel extends Mixins(BaseMixin) {
bigThumbnail: any
}
showCancelJobDialog = false
boolShowObjects = false
boolShowPauseAtLayer = false
Expand Down

0 comments on commit 8326ee0

Please sign in to comment.