Merged in feature/IO-1828-Front-End-Package-Updates (pull request #1334)

- Regression
This commit is contained in:
Dave Richer
2024-03-11 17:04:02 +00:00

View File

@@ -356,6 +356,11 @@ export function JobsDetailHeaderActions({
notification["success"]({
message: t("jobs.successes.voided"),
});
insertAuditTrail({
jobid: job.id,
operation: AuditTrailMapping.jobvoid(),
type: "jobvoid",
});
//go back to jobs list.
history(`/manage/`);
} else {
@@ -462,7 +467,6 @@ export function JobsDetailHeaderActions({
? !job.production_vars.alert
: true,
},
type: "alertToggle",
},
},
});
@@ -473,6 +477,7 @@ export function JobsDetailHeaderActions({
? !job.production_vars.alert
: true
),
type: "alertToggle",
});
};