Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kanyxmo committed Feb 9, 2024
1 parent 6673607 commit 2bfe0d2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
},
"dependencies": {
"@arco-design/color": "^0.4.0",
"@arco-design/web-vue": "^2.54.3",
"@arco-themes/vue-mine-admin-v2": "^0.0.2",
"@arco-design/web-vue": "^2.54.4",
"@arco-themes/vue-mine-admin-v2": "^0.0.3",
"@tinymce/tinymce-vue": "^5.0.0",
"@vitejs/plugin-vue": "^4.2.1",
"@vitejs/plugin-vue-jsx": "^3.0.1",
Expand Down
4 changes: 2 additions & 2 deletions src/layout/components/ma-tags.vue
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ watch(
() => appStore.tag,
r => {
nextTick(() => {
if ( (tags.value.scrollWidth ?? false) && tags.value.offsetWidth ) {
tagShowPrevNext.value = tags.value.scrollWidth > tags.value.offsetWidth
if ( (tags.value?.scrollWidth ?? false) && tags.value?.offsetWidth ) {
tagShowPrevNext.value = tags.value?.scrollWidth > tags.value.offsetWidth
}
})
},
Expand Down
10 changes: 5 additions & 5 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
dependencies:
color "^3.1.3"

"@arco-design/web-vue@^2.54.3":
"@arco-design/web-vue@^2.54.4":
version "2.54.4"
resolved "https://registry.yarnpkg.com/@arco-design/web-vue/-/web-vue-2.54.4.tgz#1a3e9fc0fb493f3284263be46e2aa2d3e2dbadc4"
integrity sha512-6YCqyY8JExuk2JOwJ+KRFy7xwuTvMYKaqaW1HZHKFtINgHPdHkqzBX3qKCK2XkFe2qQpaFJfakauxkGmpWt67g==
Expand All @@ -36,10 +36,10 @@
resize-observer-polyfill "^1.5.1"
scroll-into-view-if-needed "^2.2.28"

"@arco-themes/vue-mine-admin-v2@^0.0.2":
version "0.0.2"
resolved "https://registry.yarnpkg.com/@arco-themes/vue-mine-admin-v2/-/vue-mine-admin-v2-0.0.2.tgz#bab703f8a49c065c24420419e65dec7262dfd186"
integrity sha512-x/osOJbJyBnbyMuh6mDBXwM84VMMhGrVYdiy8JABmdKlOOT5K996ryDcLuXMzpifRSw4+2yNS0etvc3EkKmfgw==
"@arco-themes/vue-mine-admin-v2@^0.0.3":
version "0.0.3"
resolved "https://registry.yarnpkg.com/@arco-themes/vue-mine-admin-v2/-/vue-mine-admin-v2-0.0.3.tgz#80a42d28ae600e4ce6cfef8de2a23846c43a06bf"
integrity sha512-xnb1xz/DLcC0ruOqT/nTOxMC7laU5KP6wsdP6kOGGUpWr7ANJhqMbHWsXOo9ahKRuF/aolBCypdv4f9pvXVvZg==

"@babel/code-frame@^7.21.4":
version "7.21.4"
Expand Down

0 comments on commit 2bfe0d2

Please sign in to comment.