File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed
src/ui/src/components/blueprints/abstract Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -163,10 +163,7 @@ const completionStyle = computed(() => {
163163 if (latestKnownOutcome .value == " in_progress" ) return " running" ;
164164
165165 // Any dynamic out is considered success
166-
167- return (
168- { ... staticOuts .value }?.[latestKnownOutcome .value ]?.style ?? " success"
169- );
166+ return def .value ?.outs ?.[latestKnownOutcome .value ]?.style ?? " success" ;
170167});
171168
172169const latestRun = computed (() => {
@@ -230,7 +227,6 @@ const shouldDisplayError = computed(() => {
230227 if (! hasErrorOut .value ) return false ;
231228
232229 const isConnected = component .value .outs ?.some ((o ) => o .outId === " error" );
233-
234230 if (isConnected ) return true ;
235231
236232 return forceDisplayErrorOut .value ;
You can’t perform that action at this time.
0 commit comments