Add setting to hide widgets on failure

This commit is contained in:
Georges-Antoine Assi 2023-04-30 19:09:37 -04:00
parent 3d654e03c6
commit bd1c2b1881
No known key found for this signature in database
GPG key ID: E01F01B06E816D51
84 changed files with 103 additions and 93 deletions

View file

@ -8,7 +8,7 @@ export default function Component({ service }) {
const { data: statsData, error: statsError } = useWidgetAPI(widget, "cfd_tunnel");
if (statsError) {
return <Container error={statsError} />;
return <Container service={service} error={statsError} />;
}
if (!statsData) {
@ -28,4 +28,4 @@ export default function Component({ service }) {
<Block label="cloudflared.origin_ip" value={originIP} />
</Container>
);
}
}