Skip to content

Commit

Permalink
fix scss
Browse files Browse the repository at this point in the history
  • Loading branch information
xuliangzhan committed Jul 16, 2024
1 parent f7bfc82 commit 87c19c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"style": "lib/style.css",
"typings": "types/index.d.ts",
"dependencies": {
"vxe-pc-ui": "^4.0.70"
"vxe-pc-ui": "^4.0.71"
},
"devDependencies": {
"@types/resize-observer-browser": "^0.1.11",
Expand Down
3 changes: 1 addition & 2 deletions packages/table/module/custom/panel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -580,10 +580,9 @@ export default defineComponent({
VxeUIInputComponent
? h(VxeUIInputComponent, {
type: 'integer',
min: 40,
modelValue: column.renderResizeWidth,
'onUpdate:modelValue' (value: any) {
column.renderResizeWidth = Math.max(40, Number(value))
column.renderResizeWidth = Math.max(0, Number(value))
}
})
: createCommentVNode()
Expand Down

0 comments on commit 87c19c0

Please sign in to comment.