From 2d2aff125ca1b146a3827c52b5e67927f9704f59 Mon Sep 17 00:00:00 2001 From: Tom Butcher Date: Tue, 9 Dec 2025 02:09:36 +0000 Subject: [PATCH] Added destroyOnHidden property to the new job modal for improved resource management. --- src/components/Dashboard/Production/Jobs.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/Dashboard/Production/Jobs.jsx b/src/components/Dashboard/Production/Jobs.jsx index d535d04..eff9c8a 100644 --- a/src/components/Dashboard/Production/Jobs.jsx +++ b/src/components/Dashboard/Production/Jobs.jsx @@ -85,6 +85,7 @@ const Jobs = () => { open={newJobOpen} footer={null} width={700} + destroyOnHidden={true} onCancel={() => { setNewJobOpen(false) }}