Skip to content

Commit 1296dc9

Browse files
show step annotation in WorkflowInvocationStep
1 parent db46d96 commit 1296dc9

1 file changed

Lines changed: 10 additions & 3 deletions

File tree

client/src/components/WorkflowInvocationState/WorkflowInvocationStep.vue

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,13 @@ onUnmounted(() => {
213213
</div>
214214

215215
<div v-if="computedExpanded" class="portlet-content">
216+
<div
217+
v-if="props.workflowStep.annotation"
218+
class="mb-2 bg-light rounded p-2"
219+
:class="{ 'mt-2': !props.inGraphView }">
220+
{{ props.workflowStep.annotation }}
221+
</div>
222+
216223
<div v-if="isReady && invocationStepId !== undefined">
217224
<div style="min-width: 1">
218225
<BAlert v-if="loading" variant="info" show>
@@ -330,10 +337,10 @@ onUnmounted(() => {
330337
<LoadingSpan message="Loading step configuration" />
331338
</BAlert>
332339
<fieldset v-else-if="activeStepWithConfig" disabled>
333-
<FormTool
340+
<FormTool
334341
v-if="workflowStepType === 'tool'"
335-
:step="activeStepWithConfig"
336-
:datatypes="datatypes" />
342+
:step="activeStepWithConfig"
343+
:datatypes="datatypes" />
337344
<FormDefault v-else :step="activeStepWithConfig" :datatypes="datatypes" />
338345
</fieldset>
339346
</GTab>

0 commit comments

Comments
 (0)