Skip to content

Commit

Permalink
fix: breadcrumb setting not valid for header-sidebar-nav layout
Browse files Browse the repository at this point in the history
  • Loading branch information
mynetfan committed Dec 31, 2024
1 parent 3af22f7 commit 747e164
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ const {
isDark,
isFullContent,
isHeaderNav,
isHeaderSidebarNav,
isMixedNav,
isSideMixedNav,
isSideMode,
Expand Down Expand Up @@ -344,7 +345,8 @@ async function handleReset() {
v-model:breadcrumb-show-icon="breadcrumbShowIcon"
v-model:breadcrumb-style-type="breadcrumbStyleType"
:disabled="
!showBreadcrumbConfig || !(isSideNav || isSideMixedNav)
!showBreadcrumbConfig ||
!(isSideNav || isSideMixedNav || isHeaderSidebarNav)
"
/>
</Block>
Expand Down

0 comments on commit 747e164

Please sign in to comment.