Null handling missed in previous updates.

This commit is contained in:
Patrick Fic
2021-03-30 11:35:38 -07:00
parent 0498c8781f
commit a0654bdb2c
3 changed files with 5 additions and 3 deletions

View File

@@ -118,7 +118,7 @@ export default function JobBillsTotalComponent({
<Statistic
title={t("bills.labels.totalreturns")}
value={totalReturns.toFormat()}
/>{" "}
/>
<Statistic
title={t("bills.labels.creditsreceived")}
value={billCms.toFormat()}

View File

@@ -133,7 +133,7 @@ export default function JobsAvailableComponent({
title: t("general.labels.actions"),
key: "actions",
render: (text, record) => (
<Space>
<Space wrap>
<Button
onClick={() => {
deleteJob({ variables: { id: record.id } }).then((r) => {