Skip to content

Commit

Permalink
releases 4.3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
xuliangzhan committed Dec 3, 2024
1 parent 62015a6 commit c61806e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vxe-pc-ui",
"version": "4.3.12",
"version": "4.3.13",
"description": "A vue based PC component library",
"scripts": {
"update": "npm install --legacy-peer-deps",
Expand Down
4 changes: 2 additions & 2 deletions packages/language/zh-CHT.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export default {
notExp: '該瀏覽器不支援匯入/匯出功能',
impFields: '匯入失敗,請檢查欄位名稱和資料格式是否正確',
treeNotImp: '樹表格不支援導入',
reqPlugin: '可选扩展插件 "{1}" https://vxeui.com/other{0}/#/{1}/install'
reqPlugin: '可選擴展插件 "{1}" https://vxeui.com/other{0}/#/{1}/install'
},
table: {
emptyText: '暫無數據',
Expand All @@ -73,7 +73,7 @@ export default {
customCancel: '取消',
customRestore: '恢復預設',
maxFixedCol: '最大凍結列的數量不能超過 {0} 個',
dragTip: '移动:{0}'
dragTip: '移動:{0}'
},
grid: {
selectOneRecord: '請至少選擇一筆記錄!',
Expand Down
2 changes: 1 addition & 1 deletion packages/tree/src/tree.ts
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ export default defineComponent({

const handleSetExpand = (nodeid: string, expanded: boolean, expandedMaps: Record<string, boolean>) => {
if (expanded) {
if (expandedMaps[nodeid]) {
if (!expandedMaps[nodeid]) {
expandedMaps[nodeid] = true
}
} else {
Expand Down

0 comments on commit c61806e

Please sign in to comment.