We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f38efa2 commit 5d6bc86Copy full SHA for 5d6bc86
apps/sim/lib/workflows/subblocks/visibility.ts
@@ -292,7 +292,7 @@ export function resolveDependencyValue(
292
for (const [memberId, memberCanonicalId] of Object.entries(
293
canonicalIndex.canonicalIdBySubBlockId
294
)) {
295
- if (memberCanonicalId === canonicalId && values[memberId] != null) {
+ if (memberCanonicalId === canonicalId && isNonEmptyValue(values[memberId])) {
296
return values[memberId]
297
}
298
0 commit comments