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 75762f2 + c27d399 commit 17630baCopy full SHA for 17630ba
src/components/NcAppContent/NcAppContent.vue
@@ -107,8 +107,10 @@ export default {
107
'app-content-wrapper--mobile': isMobile,}">
108
<NcAppDetailsToggle v-if="showDetails" @click.native.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