We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5eae4f1 commit db46d96Copy full SHA for db46d96
1 file changed
client/src/components/WorkflowInvocationState/WorkflowInvocationStep.vue
@@ -329,14 +329,13 @@ onUnmounted(() => {
329
<BAlert v-if="loadingStepConfig" show>
330
<LoadingSpan message="Loading step configuration" />
331
</BAlert>
332
+ <fieldset v-else-if="activeStepWithConfig" disabled>
333
<FormTool
- v-else-if="workflowStepType === 'tool' && activeStepWithConfig"
334
- :step="activeStepWithConfig"
335
- :datatypes="datatypes" />
336
- <FormDefault
337
- v-else-if="workflowStepType !== 'tool' && activeStepWithConfig"
+ v-if="workflowStepType === 'tool'"
338
:step="activeStepWithConfig"
339
:datatypes="datatypes" />
+ <FormDefault v-else :step="activeStepWithConfig" :datatypes="datatypes" />
+ </fieldset>
340
</GTab>
341
</GTabs>
342
</div>
0 commit comments