mirror of
https://github.com/DI0IK/homepage-plus.git
synced 2025-07-06 04:08:47 +00:00
Fix: healthchecks widget does not respect fields parameter (#2875)
This commit is contained in:
parent
3b76772f81
commit
eda5b0f0cf
1 changed files with 12 additions and 16 deletions
|
@ -63,26 +63,22 @@ export default function Component({ service }) {
|
|||
);
|
||||
}
|
||||
|
||||
const hasUuid = widget?.uuid;
|
||||
const hasUuid = !!widget?.uuid;
|
||||
|
||||
const { upCount, downCount } = countStatus(data);
|
||||
|
||||
return (
|
||||
return hasUuid ? (
|
||||
<Container service={service}>
|
||||
{hasUuid ? (
|
||||
<>
|
||||
<Block label="healthchecks.status" value={t(`healthchecks.${data.status}`)} />
|
||||
<Block
|
||||
label="healthchecks.last_ping"
|
||||
value={data.last_ping ? formatDate(data.last_ping) : t("healthchecks.never")}
|
||||
/>
|
||||
</>
|
||||
) : (
|
||||
<>
|
||||
<Block label="healthchecks.up" value={upCount} />
|
||||
<Block label="healthchecks.down" value={downCount} />
|
||||
</>
|
||||
)}
|
||||
<Block label="healthchecks.status" value={t(`healthchecks.${data.status}`)} />
|
||||
<Block
|
||||
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} />
|
||||
</Container>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue