Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/views/Graph.vue
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
>
<GraphNode
:task="node"
:jobs="node.children"
:jobs="['task', 'family'].includes(node.type) ? node.children : []"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The issue was about both cycles and families displaying their children as jobs, but this only fixes it for cycles. At the moment a family could still display its tasks or child families as jobs

:jobTheme="jobTheme"
:class="{ 'flow-none': isFlowNone(node.node.flowNums) }"
/>
Expand Down