mirror of
https://github.com/DI0IK/homepage-plus.git
synced 2025-07-17 02:09:49 +00:00
Add setting to hide widgets on failure
This commit is contained in:
parent
3d654e03c6
commit
bd1c2b1881
84 changed files with 103 additions and 93 deletions
|
@ -9,11 +9,11 @@ export default function Component({ service }) {
|
|||
const { data: jobStats, error: jobStatsError } = useWidgetAPI(widget, "job_stats");
|
||||
|
||||
if (printerStatsError) {
|
||||
return <Container error={printerStatsError} />;
|
||||
return <Container service={service} error={printerStatsError} />;
|
||||
}
|
||||
|
||||
if (jobStatsError) {
|
||||
return <Container error={jobStatsError} />;
|
||||
return <Container service={service} error={jobStatsError} />;
|
||||
}
|
||||
|
||||
const state = printerStats?.state?.text;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue