mirror of
https://github.com/gethomepage/homepage.git
synced 2025-12-05 21:47:48 +01:00
fix fileflows widget labels
This commit is contained in:
@@ -28,10 +28,10 @@ export default function Component({ service }) {
|
||||
|
||||
return (
|
||||
<Container service={service}>
|
||||
<Block label="queue" value={t("common.number", { value: fileflowsData.queue })} />
|
||||
<Block label="processing" value={t("common.number", { value: fileflowsData.processing })} />
|
||||
<Block label="processed" value={t("common.number", { value: fileflowsData.processed })} />
|
||||
<Block label="time" value={fileflowsData.time?.length ? fileflowsData.time : "0:00"} />
|
||||
<Block label="fileflows.queue" value={t("common.number", { value: fileflowsData.queue })} />
|
||||
<Block label="fileflows.processing" value={t("common.number", { value: fileflowsData.processing })} />
|
||||
<Block label="fileflows.processed" value={t("common.number", { value: fileflowsData.processed })} />
|
||||
<Block label="fileflows.time" value={fileflowsData.time?.length ? fileflowsData.time : "0:00"} />
|
||||
</Container>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user