Skip to content

Commit

Permalink
fix: don't show redundant klipper / moonraker services
Browse files Browse the repository at this point in the history
Signed-off-by: Craig Bassett <[email protected]>
  • Loading branch information
cadriel committed Jun 24, 2021
1 parent 1d335b5 commit 1215eb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/common/SystemCommands.vue
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
<template v-for="service in supportedServices">
<v-list-item
:key="service"
v-if="service !== 'moonraker' && service !== 'klipper'"
v-if="!service.startsWith('moonraker') && !service.startsWith('klipper')"
@click="serviceRestartByName(service);
$emit('click')"
>
Expand Down

0 comments on commit 1215eb7

Please sign in to comment.