Skip to content

Commit

Permalink
Merge branch 'ToolChangerButtonsInExtruderControlPanel' of https://gi…
Browse files Browse the repository at this point in the history
…thub.com/TypQxQ/mainsail into ToolChangerButtonsInExtruderControlPanel
  • Loading branch information
TypQxQ committed Sep 19, 2023
2 parents 785a81a + bf04ec3 commit 6d7f368
Show file tree
Hide file tree
Showing 12 changed files with 302 additions and 111 deletions.
141 changes: 113 additions & 28 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
"axios": "^0.27.0",
"codemirror": "^6.0.1",
"core-js": "^3.16.0",
"detect-browser": "^5.3.0",
"echarts": "^5.2.2",
"echarts-gl": "^2.0.8",
"hls.js": "^1.3.3",
Expand Down
4 changes: 3 additions & 1 deletion src/components/TheTopCornerMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,9 @@ export default class TheTopCornerMenu extends Mixins(BaseMixin) {
}
get powerDevices() {
return this.$store.getters['server/power/getDevices']
const devices = this.$store.getters['server/power/getDevices'] ?? []
return devices.filter((device: ServerPowerStateDevice) => !device.device.startsWith('_'))
}
get service_states() {
Expand Down
Loading

0 comments on commit 6d7f368

Please sign in to comment.