Skip to content

Commit 86c9795

Browse files
authored
Fix export of right drawer as overlay
Is currently using left overlay settings and doesn't export right overlay directive as expected
1 parent ee064c5 commit 86c9795

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/layouts/LayoutBuilder.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,7 @@ export default {
559559
560560
if (this.pick.right) {
561561
code += `
562-
<q-drawer v-model="right" side="right"${this.cfg.leftOverlay ? ' overlay' : ''}${this.cfg.rightBehavior !== 'default' ? ` behavior="${this.cfg.rightBehavior}"` : ''}${this.cfg.rightSep !== 'none' ? ' ' + this.cfg.rightSep : ''}>
562+
<q-drawer v-model="right" side="right"${this.cfg.rightOverlay ? ' overlay' : ''}${this.cfg.rightBehavior !== 'default' ? ` behavior="${this.cfg.rightBehavior}"` : ''}${this.cfg.rightSep !== 'none' ? ' ' + this.cfg.rightSep : ''}>
563563
<!-- drawer content -->
564564
</q-drawer>
565565
`

0 commit comments

Comments
 (0)