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.
1 parent 4940c16 commit c2832faCopy full SHA for c2832fa
src/components/NcAppContent/NcAppContent.vue
@@ -67,9 +67,13 @@ The list size must be between the min and the max width value.
67
'app-content-wrapper--show-list': !showDetails,
68
'app-content-wrapper--mobile': isMobile,}">
69
<NcAppDetailsToggle v-if="showDetails" @click.native.stop.prevent="hideDetails" />
70
- <slot v-if="!showDetails" name="list" />
+ <div v-show="!showDetails">
71
+ <slot name="list" />
72
+ </div>
73
- <slot v-else />
74
+ <div v-if="showDetails">
75
+ <slot />
76
77
</div>
78
<div v-else-if="layout === 'vertical-split' || layout === 'horizontal-split'" class="app-content-wrapper">
79
<Splitpanes :horizontal="layout === 'horizontal-split'"
0 commit comments