@tagplus/components 2.1.10 → 2.1.12
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/dist/tp.common.js +1 -1
- package/dist/tp.common.js.map +1 -1
- package/dist/tp.css +1 -1
- package/dist/tp.umd.js +1 -1
- package/dist/tp.umd.js.map +1 -1
- package/dist/tp.umd.min.js +1 -1
- package/dist/tp.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Multisuggest/Multisuggest.vue +1 -1
package/package.json
CHANGED
|
@@ -525,7 +525,7 @@ export default {
|
|
|
525
525
|
const formatItem = parseInt(item) ? parseInt(item) : item
|
|
526
526
|
const formatSuggestion = parseInt(suggestion[this.valueKey]) ? parseInt(suggestion[this.valueKey]) : suggestion[this.valueKey]
|
|
527
527
|
|
|
528
|
-
if (formatSuggestion === formatItem) {
|
|
528
|
+
if (formatSuggestion === formatItem && !this.selectedLabelsArray.includes(suggestion)) {
|
|
529
529
|
this.selectedLabelsArray.push(suggestion)
|
|
530
530
|
}
|
|
531
531
|
})
|