diff --git a/src/widgets/moonraker/component.jsx b/src/widgets/moonraker/component.jsx index 78332135..87280053 100644 --- a/src/widgets/moonraker/component.jsx +++ b/src/widgets/moonraker/component.jsx @@ -37,6 +37,16 @@ export default function Component({ service }) { const printStatsInfo = printStats.result.status.print_stats.info ?? {}; const { current_layer: currentLayer = "-", total_layer: totalLayer = "-" } = printStatsInfo; + if (printStats.result.status.print_stats.state === "standby") { + return ( + + + + + + ); + } + return ( @@ -47,4 +57,5 @@ export default function Component({ service }) { ); + }