Skip to content

Commit

Permalink
Fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelmeister committed Sep 29, 2024
1 parent 5fef77d commit 171eb8b
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions print/components/scheduleEntry/contentNode/ResponsiveLayout.vue
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
<template>
<div class="tw-flex tw-flex-col">
<FlexItem :children="children['aside-top']" direction="row" />
<FlexItem :children="children['main']" direction="column" />
<FlexItem :children="children['aside-bottom']" direction="row" />
<FlexItem
v-if="children['aside-top']"
:children="children['aside-top']"
direction="row"
/>
<FlexItem v-if="children['main']" :children="children['main']" direction="column" />
<FlexItem
v-if="children['aside-bottom']"
:children="children['aside-bottom']"
direction="row"
/>
</div>
</template>

Expand Down

0 comments on commit 171eb8b

Please sign in to comment.