fileflows code cleanup

pull/990/head
shamoon 1 year ago
parent 6bb94dc185
commit 598815ba5c

@ -25,21 +25,13 @@ export default function Component({ service }) {
</Container>
);
}
function fromTime(value) {
if (!value) {
fileflowsData.time = "0:00";
return fileflowsData.time;
}
return fileflowsData.time;
}
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={fromTime(fileflowsData.time)} />
<Block label="time" value={fileflowsData.time?.length ? fileflowsData.time : "0:00"} />
</Container>
);
}

Loading…
Cancel
Save