Skip to content

Commit

Permalink
Fix console error when deleting block in compose page builder
Browse files Browse the repository at this point in the history
  • Loading branch information
Fajfa committed Oct 17, 2023
1 parent a7dd074 commit c9fca53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/web/compose/src/components/Common/Grid.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
v-for="(item, index) in layout"
>
<grid-item
v-if="!blocks[item.i].meta.hidden"
v-if="blocks[item.i] && !blocks[item.i].meta.hidden"
:key="item.i"
ref="items"
:i="item.i"
Expand Down

0 comments on commit c9fca53

Please sign in to comment.