fileflows code cleanup

pull/990/head
shamoon 2 years ago
parent 6bb94dc185
commit 598815ba5c

@ -25,21 +25,13 @@ export default function Component({ service }) {
</Container> </Container>
); );
} }
function fromTime(value) {
if (!value) {
fileflowsData.time = "0:00";
return fileflowsData.time;
}
return fileflowsData.time;
}
return ( return (
<Container service={service}> <Container service={service}>
<Block label="queue" value={t("common.number", { value: fileflowsData.queue })} /> <Block label="queue" value={t("common.number", { value: fileflowsData.queue })} />
<Block label="processing" value={t("common.number", { value: fileflowsData.processing })} /> <Block label="processing" value={t("common.number", { value: fileflowsData.processing })} />
<Block label="processed" value={t("common.number", { value: fileflowsData.processed })} /> <Block label="processed" value={t("common.number", { value: fileflowsData.processed })} />
<Block label="time" value={fromTime(fileflowsData.time)} /> <Block label="time" value={fileflowsData.time?.length ? fileflowsData.time : "0:00"} />
</Container> </Container>
); );
} }

Loading…
Cancel
Save