Skip to content

Commit c892d56

Browse files
committed
fix nav when not enough height
1 parent cadc413 commit c892d56

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/components/NavMenu.vue

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<template>
2-
<q-list class="column fit">
3-
<q-item v-ripple clickable to="/" exact>
2+
<div class="column fit no-wrap">
3+
<q-list class="col overflow-auto">
4+
<q-item v-ripple clickable to="/" exact>
45
<q-item-section avatar>
56
<q-icon name="sym_s_dns" />
67
</q-item-section>
@@ -161,8 +162,9 @@
161162

162163
<q-item-section> Add Document </q-item-section>
163164
</q-item>
165+
</q-list>
164166
<ProjectInfo v-if="!store.uiConfig.hideProjectInfo" />
165-
</q-list>
167+
</div>
166168
</template>
167169

168170
<script setup lang="ts">

0 commit comments

Comments
 (0)