We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 441320d commit f93d463Copy full SHA for f93d463
src/components/widget/layout/BaseModalLayout.vue
@@ -80,11 +80,7 @@
80
<slot name="rightPanelHeaderTitle" />
81
</div>
82
<slot name="rightPanelHeaderActions" />
83
- <Button
84
- v-if="showRightPanelButton"
85
- size="icon"
86
- @click="toggleRightPanel"
87
- >
+ <Button size="icon" @click="toggleRightPanel">
88
<i class="icon-[lucide--panel-right-close] text-sm" />
89
</Button>
90
<Button size="icon" @click="closeDialog">
src/platform/assets/components/AssetBrowserModal.vue
@@ -1,6 +1,6 @@
1
<template>
2
<BaseModalLayout
3
- :hide-right-panel-button="!!focusedAsset"
+ :hide-right-panel-button="true"
4
:right-panel-open="!!focusedAsset"
5
data-component-id="AssetBrowserModal"
6
class="size-full max-h-full max-w-full min-w-0"
0 commit comments