diff --git a/src/lib/components/workflow/relationships/workflow-family-node-description-details.svelte b/src/lib/components/workflow/relationships/workflow-family-node-description-details.svelte index 31ca061e25..8a6d20470b 100644 --- a/src/lib/components/workflow/relationships/workflow-family-node-description-details.svelte +++ b/src/lib/components/workflow/relationships/workflow-family-node-description-details.svelte @@ -15,7 +15,7 @@ namespace: string; isRootWorkflow?: boolean; isActive?: boolean; - children?: number; + childrenCount?: number; expanded?: boolean; }; @@ -24,7 +24,7 @@ namespace, isRootWorkflow = false, isActive = false, - children = 0, + childrenCount = 0, expanded = false, }: Props = $props(); @@ -36,7 +36,9 @@ }), ); - const showExpandIcon = $derived(!isRootWorkflow && $showFullTree && children); + const showExpandIcon = $derived( + !isRootWorkflow && $showFullTree && childrenCount, + );