goodteditor-ui 1.0.68 → 1.0.69

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": "goodteditor-ui",
3
- "version": "1.0.68",
3
+ "version": "1.0.69",
4
4
  "main": "index.js",
5
5
  "homepage": "https://goodt-ui.netlify.app/",
6
6
  "scripts": {
@@ -351,7 +351,7 @@ export default {
351
351
  const optionsSelected = options.filter((option) => models.some((modelItem) => isValueOfOption(option, modelItem)));
352
352
  if (optionsSelected.length > 0) {
353
353
  this.dataListCursorIndex = this.getOptionIndex(optionsSelected[0]);
354
- this.optionsSelected = this.multiple ? optionsSelected : optionsSelected[0];
354
+ this.optionsSelected = this.multiple ? optionsSelected : [optionsSelected[0]];
355
355
  }
356
356
  },
357
357
  exportModel() {