mirror of
https://github.com/LukeHagar/homepage.git
synced 2025-12-06 04:19:57 +00:00
Fix: moonraker widget error when not printing (#2468)
This commit is contained in:
@@ -34,12 +34,8 @@ export default function Component({ service }) {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
let currentLayer = "-";
|
const printStatsInfo = printStats.result.status.print_stats.info ?? {};
|
||||||
let totalLayer = "-";
|
const { current_layer: currentLayer = "-", total_layer: totalLayer = "-" } = printStatsInfo;
|
||||||
if (printStats.result.status.print_stats.info.total_layer !== null) {
|
|
||||||
currentLayer = printStats.result.status.print_stats.info.current_layer;
|
|
||||||
totalLayer = printStats.result.status.print_stats.info.total_layer;
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Container service={service}>
|
<Container service={service}>
|
||||||
|
|||||||
Reference in New Issue
Block a user