mirror of
https://github.com/karl0ss/homepage.git
synced 2025-04-29 12:03:41 +01:00
Fix: healthchecks widget does not respect fields parameter (#2875)
This commit is contained in:
parent
3b76772f81
commit
eda5b0f0cf
@ -63,26 +63,22 @@ export default function Component({ service }) {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
const hasUuid = widget?.uuid;
|
const hasUuid = !!widget?.uuid;
|
||||||
|
|
||||||
const { upCount, downCount } = countStatus(data);
|
const { upCount, downCount } = countStatus(data);
|
||||||
|
|
||||||
return (
|
return hasUuid ? (
|
||||||
<Container service={service}>
|
<Container service={service}>
|
||||||
{hasUuid ? (
|
<Block label="healthchecks.status" value={t(`healthchecks.${data.status}`)} />
|
||||||
<>
|
<Block
|
||||||
<Block label="healthchecks.status" value={t(`healthchecks.${data.status}`)} />
|
label="healthchecks.last_ping"
|
||||||
<Block
|
value={data.last_ping ? formatDate(data.last_ping) : t("healthchecks.never")}
|
||||||
label="healthchecks.last_ping"
|
/>
|
||||||
value={data.last_ping ? formatDate(data.last_ping) : t("healthchecks.never")}
|
</Container>
|
||||||
/>
|
) : (
|
||||||
</>
|
<Container service={service}>
|
||||||
) : (
|
<Block label="healthchecks.up" value={upCount} />
|
||||||
<>
|
<Block label="healthchecks.down" value={downCount} />
|
||||||
<Block label="healthchecks.up" value={upCount} />
|
|
||||||
<Block label="healthchecks.down" value={downCount} />
|
|
||||||
</>
|
|
||||||
)}
|
|
||||||
</Container>
|
</Container>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user