modify process group id before submitting w/ burnettk

This commit is contained in:
jasquat 2022-11-22 10:53:29 -05:00
parent 016d2b19e2
commit 169487eead
1 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ export default function ProcessGroupForm({
event.preventDefault(); event.preventDefault();
let hasErrors = false; let hasErrors = false;
if (!hasValidIdentifier(processGroup.id)) { if (mode === 'new' && !hasValidIdentifier(processGroup.id)) {
setIdentifierInvalid(true); setIdentifierInvalid(true);
hasErrors = true; hasErrors = true;
} }
@ -68,7 +68,7 @@ export default function ProcessGroupForm({
} }
let path = '/process-groups'; let path = '/process-groups';
if (mode === 'edit') { if (mode === 'edit') {
path = `/process-groups/${processGroup.id}`; path = `/process-groups/${modifyProcessModelPath(processGroup.id)}`;
} }
let httpMethod = 'POST'; let httpMethod = 'POST';
if (mode === 'edit') { if (mode === 'edit') {