Skip to content
Open
Show file tree
Hide file tree
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
58 changes: 29 additions & 29 deletions dist/flow-builder.common.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/flow-builder.common.js.map

Large diffs are not rendered by default.

58 changes: 29 additions & 29 deletions dist/flow-builder.umd.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/flow-builder.umd.js.map

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions dist/flow-builder.umd.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/flow-builder.umd.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/components/interaction-designer/ResourceViewer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div class="resource-viewer-contents">
<resource-viewer-block
v-for="block in activeFlow?.blocks ?? []"
v-show="visibleBlocks.includes(block.uuid)"
v-show="visibleBlocks === null || visibleBlocks.includes(block.uuid)"
Copy link
Member Author

Choose a reason for hiding this comment

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

I'm proposing here to always display those block if the visibleBlocks is null, which would allow us to make a test on that edge case scenario.

:id="`block/${block.uuid}`"
:key="block.uuid"
:block="block"
Expand Down