Skip to content

Commit 483cbfa

Browse files
authored
fix: breaking of build flow line (#39)
1 parent 8bdb75f commit 483cbfa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/devtools/src/app/components/flowmap/ModuleFlow.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ const codeDisplay = computed(() => {
266266
:item="item"
267267
:session="session"
268268
:active="isSelectedAncestor(item)"
269-
:class="index > 0 ? 'pt-2' : ''"
269+
:class="index > 0 && item.type !== 'no_changes_hide' ? 'pt-2' : ''"
270270
@select="e => selected = e"
271271
@toggle-show-all="flowShowAllLoads = !flowShowAllLoads"
272272
/>
@@ -294,7 +294,7 @@ const codeDisplay = computed(() => {
294294
:item="item"
295295
:session="session"
296296
:active="isSelectedAncestor(item)"
297-
:class="index > 0 ? 'pt-2' : ''"
297+
:class="index > 0 && item.type !== 'no_changes_hide' ? 'pt-2' : ''"
298298
@select="e => selected = e"
299299
@toggle-show-all="flowShowAllTransforms = !flowShowAllTransforms"
300300
/>

0 commit comments

Comments
 (0)