Skip to content

Commit

Permalink
perf: ♻️ Mirror group shutdown logic
Browse files Browse the repository at this point in the history
  • Loading branch information
viarotel committed Nov 11, 2023
1 parent 5793c24 commit 296e21d
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ export default {
console.log('handleCommand.command', command)
if (command === 'close') {
this.$adb.clearOverlayDisplayDevices(this.device.id)
this.handleStop()
this.loading = false
return false
}
Expand Down Expand Up @@ -75,10 +76,12 @@ export default {
}
}
this.$adb.clearOverlayDisplayDevices(this.device.id)
this.handleStop()
this.loading = false
},
handleStop() {
this.$adb.clearOverlayDisplayDevices(this.device.id)
},
},
}
</script>
Expand Down

0 comments on commit 296e21d

Please sign in to comment.