diff --git a/components/elements/processes/index.tsx b/components/elements/processes/index.tsx index 83be1b8..43c1e75 100644 --- a/components/elements/processes/index.tsx +++ b/components/elements/processes/index.tsx @@ -201,6 +201,7 @@ export default function Processes() { value={type} onChange={(event: any, newValue: string | null) => { setType(newValue || ''); + setLoading(true) }} disablePortal options={['None', "Running", "History", '']} @@ -213,6 +214,7 @@ export default function Processes() { value={name} onChange={(event: any, newValue: string | null) => { setName(newValue || ''); + setLoading(true) }} disablePortal options={variants}