- nuke visible from the face of the earth with fire.

Signed-off-by: Dave Richer <dave@imexsystems.ca>
This commit is contained in:
Dave Richer
2024-01-12 17:25:25 -05:00
parent 7d6e61043e
commit ba32a71786
58 changed files with 227 additions and 229 deletions

View File

@@ -24,12 +24,12 @@ function JobReconciliationModalContainer({
toggleModalVisible,
}) {
const { t } = useTranslation();
const { context, visible } = reconciliationModal;
const { context, open } = reconciliationModal;
const { job } = context;
const { loading, error, data } = useQuery(GET_JOB_RECONCILIATION_BY_PK, {
variables: { id: job && job.id },
skip: !(job && job.id) || !visible,
skip: !(job && job.id) || !open,
fetchPolicy: "network-only",
nextFetchPolicy: "network-only",
});
@@ -42,7 +42,7 @@ function JobReconciliationModalContainer({
<Modal
title={t("jobs.labels.reconciliationheader")}
width={"95%"}
open={visible}
open={open}
okText={t("general.actions.close")}
onOk={handleCancel}
onCancel={handleCancel}