Skip to content

Commit be2e71d

Browse files
committed
merge mater
2 parents af7571d + 331173f commit be2e71d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/layout/components/Sidebar/SidebarItem.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<template>
22
<div v-if="!item.hidden" class="menu-wrapper">
33
<template v-if="hasOneShowingChild(item.children,item) && (!onlyOneChild.children||onlyOneChild.noShowingChildren)&&!item.alwaysShow">
4-
<app-link :to="resolvePath(onlyOneChild.path)">
4+
<app-link v-if="onlyOneChild.meta" :to="resolvePath(onlyOneChild.path)">
55
<el-menu-item :index="resolvePath(onlyOneChild.path)" :class="{'submenu-title-noDropdown':!isNest}">
6-
<item v-if="onlyOneChild.meta" :icon="onlyOneChild.meta.icon||(item.meta&&item.meta.icon)" :title="generateTitle(onlyOneChild.meta.title)" />
6+
<item :icon="onlyOneChild.meta.icon||(item.meta&&item.meta.icon)" :title="generateTitle(onlyOneChild.meta.title)" />
77
</el-menu-item>
88
</app-link>
99
</template>

src/views/login/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ $cursor: #fff;
207207
caret-color: $cursor;
208208
209209
&:-webkit-autofill {
210-
-webkit-box-shadow: 0 0 0px 1000px $bg inset !important;
210+
box-shadow: 0 0 0px 1000px $bg inset !important;
211211
-webkit-text-fill-color: $cursor !important;
212212
}
213213
}

0 commit comments

Comments
 (0)