mirror of
https://github.com/sartography/spiff-arena.git
synced 2025-02-22 22:28:15 +00:00
remove outer grid on form page w/ burnettk
This commit is contained in:
parent
ce5abaf100
commit
a20359df81
@ -378,10 +378,8 @@ export default function ProcessModelForm({
|
||||
};
|
||||
return (
|
||||
<form onSubmit={handleFormSubmission}>
|
||||
<Grid container spacing={3}>
|
||||
{formElements()}
|
||||
{formButtons()}
|
||||
</Grid>
|
||||
{formElements()}
|
||||
{formButtons()}
|
||||
</form>
|
||||
);
|
||||
}
|
||||
|
@ -65,7 +65,10 @@ function SideNav({
|
||||
let selectedTab = 0;
|
||||
if (location.pathname === '/newui/startprocess') {
|
||||
selectedTab = 1;
|
||||
} else if (location.pathname.startsWith('/newui/processes')) {
|
||||
} else if (
|
||||
location.pathname.startsWith('/newui/processes') ||
|
||||
location.pathname.startsWith('/newui/process-')
|
||||
) {
|
||||
selectedTab = 2;
|
||||
} else if (location.pathname === '/newui/data-stores') {
|
||||
selectedTab = 3;
|
||||
|
Loading…
x
Reference in New Issue
Block a user