Skip to content

Commit d49dfc6

Browse files
author
Kenneth Cheng
committed
fix column min-width
1 parent 4c99296 commit d49dfc6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vue3-excel-editor",
33
"email": "apple.6502@gmail.com",
44
"description": "Vue3 plugin for displaying and editing the array-of-object in Excel style",
5-
"version": "1.0.13",
5+
"version": "1.0.14",
66
"main": "src/main.js",
77
"dependencies": {
88
"@vuepic/vue-datepicker": "^3.3.0",

src/VueExcelEditor.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
ondragover="event.preventDefault(); event.dataTransfer.dropEffect = 'none'">
2424
<colgroup>
2525
<col v-if="!noNumCol" style="width:40px">
26-
<col v-for="(item, p) in fields" v-show="!item.invisible" :key="p" :style="{width: item.width, 'min-width': item.minWidth || item.width}">
26+
<col v-for="(item, p) in fields" v-show="!item.invisible" :key="p" :style="{width: item.width, 'min-width': item.minWidth}">
2727
<col v-if="vScroller.buttonHeight < vScroller.height" style="width:12px">
2828
</colgroup>
2929
<thead class="center-text">

0 commit comments

Comments
 (0)