@eturnity/eturnity_reusable_components 1.1.46 → 1.1.47

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": "@eturnity/eturnity_reusable_components",
3
- "version": "1.1.46",
3
+ "version": "1.1.47",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
@@ -540,7 +540,9 @@ export default {
540
540
  (this.dynamicWidth.length < this.optionsDisplay.length ||
541
541
  value.length > this.dynamicWidth[index])
542
542
  ) {
543
- this.dynamicGridWidth[index] = value.length + "ch"
543
+ if (Array.isArray(this.dynamicGridWidth)) {
544
+ this.dynamicGridWidth[index] = value.length + "ch"
545
+ }
544
546
  this.dynamicWidth[index] = value.length
545
547
  }
546
548
  })