We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e3522a commit a0b90bdCopy full SHA for a0b90bd
src/components/SimpleProcessDesignerV2/src/SimpleProcessDesigner.vue
@@ -168,7 +168,7 @@ onMounted(async () => {
168
const bpmnModel = await getModel(props.modelId)
169
if (bpmnModel) {
170
formType.value = bpmnModel.formType
171
- if (formType.value === BpmModelFormType.CUSTOM && bpmnModel.formId) {
+ if (formType.value === BpmModelFormType.NORMAL && bpmnModel.formId) {
172
const bpmnForm = (await getForm(bpmnModel.formId)) as unknown as FormVO
173
formFields.value = bpmnForm?.fields
174
}
0 commit comments