mirror of
https://github.com/sartography/spiff-arena.git
synced 2025-02-23 06:38:24 +00:00
add some margins
This commit is contained in:
parent
4beb63ee5c
commit
e75cb18e6d
@ -261,6 +261,7 @@ export default function ProcessModelForm({
|
|||||||
onDisplayNameChanged(event.target.value);
|
onDisplayNameChanged(event.target.value);
|
||||||
}}
|
}}
|
||||||
fullWidth
|
fullWidth
|
||||||
|
sx={{ mb: 2 }}
|
||||||
/>,
|
/>,
|
||||||
];
|
];
|
||||||
|
|
||||||
@ -287,6 +288,7 @@ export default function ProcessModelForm({
|
|||||||
setIdHasBeenUpdatedByUser(true);
|
setIdHasBeenUpdatedByUser(true);
|
||||||
}}
|
}}
|
||||||
fullWidth
|
fullWidth
|
||||||
|
sx={{ mb: 2 }}
|
||||||
/>,
|
/>,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@ -303,6 +305,7 @@ export default function ProcessModelForm({
|
|||||||
}
|
}
|
||||||
multiline
|
multiline
|
||||||
fullWidth
|
fullWidth
|
||||||
|
sx={{ mb: 2 }}
|
||||||
/>,
|
/>,
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -316,16 +319,19 @@ export default function ProcessModelForm({
|
|||||||
onNotificationTypeChanged(event.target.value);
|
onNotificationTypeChanged(event.target.value);
|
||||||
}}
|
}}
|
||||||
fullWidth
|
fullWidth
|
||||||
|
sx={{ mb: 2 }}
|
||||||
>
|
>
|
||||||
<MenuItem value="fault">Fault</MenuItem>
|
<MenuItem value="fault">Fault</MenuItem>
|
||||||
<MenuItem value="suspend">Suspend</MenuItem>
|
<MenuItem value="suspend">Suspend</MenuItem>
|
||||||
</Select>,
|
</Select>,
|
||||||
);
|
);
|
||||||
textInputs.push(
|
textInputs.push(
|
||||||
<Typography variant="h3">Notification Addresses</Typography>,
|
<Typography variant="h3" sx={{ mt: 2, mb: 1 }}>
|
||||||
|
Notification Addresses
|
||||||
|
</Typography>,
|
||||||
);
|
);
|
||||||
textInputs.push(
|
textInputs.push(
|
||||||
<Typography variant="body2">
|
<Typography variant="body2" sx={{ mb: 2 }}>
|
||||||
You can provide one or more addresses to notify if this model fails.
|
You can provide one or more addresses to notify if this model fails.
|
||||||
</Typography>,
|
</Typography>,
|
||||||
);
|
);
|
||||||
@ -339,14 +345,19 @@ export default function ProcessModelForm({
|
|||||||
onClick={() => {
|
onClick={() => {
|
||||||
addBlankNotificationAddress();
|
addBlankNotificationAddress();
|
||||||
}}
|
}}
|
||||||
|
sx={{ mt: 1, mb: 2 }}
|
||||||
>
|
>
|
||||||
Add Notification Address
|
Add Notification Address
|
||||||
</Button>,
|
</Button>,
|
||||||
);
|
);
|
||||||
|
|
||||||
textInputs.push(<Typography variant="h3">Metadata Extractions</Typography>);
|
|
||||||
textInputs.push(
|
textInputs.push(
|
||||||
<Typography variant="body2">
|
<Typography variant="h3" sx={{ mt: 2, mb: 1 }}>
|
||||||
|
Metadata Extractions
|
||||||
|
</Typography>,
|
||||||
|
);
|
||||||
|
textInputs.push(
|
||||||
|
<Typography variant="body2" sx={{ mb: 2 }}>
|
||||||
You can provide one or more metadata extractions to pull data from your
|
You can provide one or more metadata extractions to pull data from your
|
||||||
process instances to provide quick access in searches and perspectives.
|
process instances to provide quick access in searches and perspectives.
|
||||||
</Typography>,
|
</Typography>,
|
||||||
@ -361,6 +372,7 @@ export default function ProcessModelForm({
|
|||||||
onClick={() => {
|
onClick={() => {
|
||||||
addBlankMetadataExtractionPath();
|
addBlankMetadataExtractionPath();
|
||||||
}}
|
}}
|
||||||
|
sx={{ mt: 1, mb: 2 }}
|
||||||
>
|
>
|
||||||
Add Metadata Extraction Path
|
Add Metadata Extraction Path
|
||||||
</Button>,
|
</Button>,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user