Skip to content

Commit

Permalink
fix: Fix display of Back button for Sites MD & SM in Sidebar Second L…
Browse files Browse the repository at this point in the history
…evel drawer - Meeds-io/MIPs#159
  • Loading branch information
boubaker committed Dec 3, 2024
1 parent ca3ca41 commit 79c5f15
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
v-else-if="secondLevel === 'site'"
:site="site"
:enable-change-home="$root.allowUserHome"
:display-sequentially="$root.displaySequentially"
@close="drawer = false" />
</div>
</v-hover>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@
class="full-height">
<row
v-if="!$root.displaySequentially && !displaySequentially"
class="px-4 pt-3 position-absolute d-sm-none z-index-one">
class="px-4 pt-3 position-absolute z-index-one">
<v-btn
class="white"
elevation="2"
icon
small
@click="$emit('close')">
<v-icon small>
{{ $root.ltr && 'fa-arrow-left' || 'fa-arrow-right' }}
{{ $vuetify.rtl && 'fa-arrow-right' || 'fa-arrow-left' }}
</v-icon>
</v-btn>
</row>
Expand Down

0 comments on commit 79c5f15

Please sign in to comment.