n20-common-lib 2.13.14 → 2.13.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n20-common-lib",
3
- "version": "2.13.14",
3
+ "version": "2.13.15",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -366,7 +366,7 @@ export default {
366
366
  return columns.map((column) => {
367
367
  if (!column.type) {
368
368
  const rate = column['_width_'] / columnsWidth
369
- column['width'] = windowWidth * rate
369
+ column['width'] = Math.ceil(windowWidth * rate)
370
370
  return column
371
371
  }
372
372