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 1c44f3a commit a7ab7ffCopy full SHA for a7ab7ff
src/components/NcAppSidebar/NcAppSidebar.vue
@@ -665,7 +665,8 @@ export default {
665
</div>
666
667
668
- <NcButton ref="closeButton"
+ <NcButton v-if="!noClose"
669
+ ref="closeButton"
670
:aria-label="closeTranslated"
671
:title="closeTranslated"
672
class="app-sidebar__close"
@@ -836,7 +837,14 @@ export default {
836
837
type: Boolean,
838
default: false,
839
},
-
840
+ /**
841
+ * Do not show the close button for the sidebar.
842
+ * @default false
843
+ */
844
+ noClose: {
845
+ type: Boolean,
846
+ default: false,
847
+ },
848
/**
849
* Force the actions to display in a three dot menu
850
*/
0 commit comments