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
84 changed files with 103 additions and 93 deletions

View File

@@ -15,7 +15,7 @@ export default function Component({ service }) {
if (seriesError || issuesError || wantedError) {
const finalError = seriesError ?? issuesError ?? wantedError;
return <Container error={finalError} />;
return <Container service={service} error={finalError} />;
}
if (!seriesData || !issuesData || !wantedData) {
@@ -37,4 +37,4 @@ export default function Component({ service }) {
<Block label="mylar.wanted" value={t("common.number", { value: wantedData.issues.length })} />
</Container>
);
}
}