fileflows code cleanup
This commit is contained in:
parent
6bb94dc185
commit
598815ba5c
1 changed files with 1 additions and 9 deletions
|
@ -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…
Add table
Reference in a new issue