Skip to content

Commit

Permalink
releases 4.7.54
Browse files Browse the repository at this point in the history
  • Loading branch information
xuliangzhan committed Jul 17, 2024
1 parent 87c19c0 commit dbbc904
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ body:
- type: input
id: issue_link
attributes:
label: "可复现的链接:"
label: "可复现的链接(包含复现链接与示例代码)"
description: "一个最小化的重现示例能让我们精确地定位问题,从而快速解决问题。"
validations:
required: true
Expand Down Expand Up @@ -63,5 +63,5 @@ body:
label: "是否使用当前最新版本?"
description: "官方只维护最新版本,如果不是最新版本,请先更新到[最新版本](https://vxetable.cn/)之后再提!"
options:
- label: "我已确认是使用当前的最新版本"
- label: "我已确认是使用当前的最新版本并已按要求提供复现链接与示例代码"
required: true
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vxe-table",
"version": "4.7.53",
"version": "4.7.54",
"description": "一个基于 vue 的 PC 端表格组件,支持增删改查、虚拟树、列拖拽,懒加载、快捷菜单、数据校验、树形结构、打印、导入导出、自定义模板、渲染器、JSON 配置式...",
"scripts": {
"update": "npm install --legacy-peer-deps",
Expand Down Expand Up @@ -28,7 +28,7 @@
"style": "lib/style.css",
"typings": "types/index.d.ts",
"dependencies": {
"vxe-pc-ui": "^4.0.71"
"vxe-pc-ui": "^4.0.73"
},
"devDependencies": {
"@types/resize-observer-browser": "^0.1.11",
Expand Down
3 changes: 2 additions & 1 deletion packages/table/src/table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3432,7 +3432,8 @@ export default defineComponent({
const bodyWidth = bodyElem ? bodyElem.clientWidth - 1 : 0
rdWidth = Math.floor(colWidth * bodyWidth)
}
column.renderWidth = rdWidth
column.resizeWidth = rdWidth
return tableMethods.refreshColumn()
}
return nextTick()
},
Expand Down

0 comments on commit dbbc904

Please sign in to comment.