ProcessInstanceShow loading icon should not be an overlay w/ burnettk

This commit is contained in:
jasquat 2024-05-28 11:41:48 -04:00
parent 3521916f90
commit 9153de0538
No known key found for this signature in database
1 changed files with 8 additions and 1 deletions

View File

@ -1883,5 +1883,12 @@ export default function ProcessInstanceShow({ variant }: OwnProps) {
</>
);
}
return <Loading />;
return (
<Loading
description="Active loading indicator"
withOverlay={false}
style={{ margin: '50px 0 50px 50px' }}
/>
);
}