We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a4f3011 + 919cc47 commit 66461b2Copy full SHA for 66461b2
src/components/NcAppContent/NcAppContent.vue
@@ -107,8 +107,10 @@ export default {
107
'app-content-wrapper--mobile': isMobile,}">
108
<NcAppDetailsToggle v-if="showDetails" @click.stop.prevent="hideDetails" />
109
110
- <slot v-if="!showDetails" name="list" />
111
- <slot v-else />
+ <div v-show="!showDetails">
+ <slot name="list" />
112
+ </div>
113
+ <slot v-if="showDetails" />
114
</div>
115
<div v-else-if="layout === 'vertical-split' || layout === 'horizontal-split'" class="app-content-wrapper">
116
<Splitpanes :horizontal="layout === 'horizontal-split'"
0 commit comments