Skip to content

Commit 79d876a

Browse files
authored
Merge pull request #1065 from writer/AB-111-2
fix(ui): improve static out label - WF-111
2 parents 735afd4 + afeb01e commit 79d876a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/ui/src/components/blueprints/abstract/BlueprintsNode.vue

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
"
7474
class="BlueprintsNode__main__outputs__title"
7575
>
76-
THEN
76+
{{ staticOutLabel }}
7777
</h4>
7878
<BlueprintsNodeOutput
7979
v-for="(out, outId) in staticOuts"
@@ -166,6 +166,10 @@ const completionStyle = computed(() => {
166166
return def.value?.outs?.[latestKnownOutcome.value]?.style ?? "success";
167167
});
168168
169+
const staticOutLabel = computed(() =>
170+
component.value?.type === "blueprints_writerclassification" ? "OR" : "THEN",
171+
);
172+
169173
const latestRun = computed(() => {
170174
const logEntries = wfbm.getLogEntries();
171175
const runId =

0 commit comments

Comments
 (0)