mirror of
https://github.com/sartography/spiff-arena.git
synced 2025-02-23 14:48:35 +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 (
|
return (
|
||||||
<form onSubmit={handleFormSubmission}>
|
<form onSubmit={handleFormSubmission}>
|
||||||
<Grid container spacing={3}>
|
|
||||||
{formElements()}
|
{formElements()}
|
||||||
{formButtons()}
|
{formButtons()}
|
||||||
</Grid>
|
|
||||||
</form>
|
</form>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -65,7 +65,10 @@ function SideNav({
|
|||||||
let selectedTab = 0;
|
let selectedTab = 0;
|
||||||
if (location.pathname === '/newui/startprocess') {
|
if (location.pathname === '/newui/startprocess') {
|
||||||
selectedTab = 1;
|
selectedTab = 1;
|
||||||
} else if (location.pathname.startsWith('/newui/processes')) {
|
} else if (
|
||||||
|
location.pathname.startsWith('/newui/processes') ||
|
||||||
|
location.pathname.startsWith('/newui/process-')
|
||||||
|
) {
|
||||||
selectedTab = 2;
|
selectedTab = 2;
|
||||||
} else if (location.pathname === '/newui/data-stores') {
|
} else if (location.pathname === '/newui/data-stores') {
|
||||||
selectedTab = 3;
|
selectedTab = 3;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user