Skip to content

Commit

Permalink
chore: the sidebar title is not displayed in mobile mode (vbenjs#4312)
Browse files Browse the repository at this point in the history
  • Loading branch information
pzzyf authored and kkfive committed Sep 14, 2024
1 parent e179d69 commit b4547f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/effects/layouts/src/basic/layout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const isMenuRounded = computed(() => {
});
const logoCollapsed = computed(() => {
if (isMobile.value) {
if (isMobile.value && sidebarCollapsed.value) {
return true;
}
if (isHeaderNav.value || isMixedNav.value) {
Expand Down

0 comments on commit b4547f3

Please sign in to comment.