@webitel/ui-sdk 24.2.18 → 24.2.20
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
|
@@ -4,6 +4,7 @@ export default {
|
|
|
4
4
|
// this functionality allows you to add custom values to the list of values
|
|
5
5
|
// [https://my.webitel.com/browse/WTEL-3181]
|
|
6
6
|
tag(searchQuery, id) {
|
|
7
|
+
console.info(this.value);
|
|
7
8
|
this.emitTagEvent(searchQuery, id);
|
|
8
9
|
|
|
9
10
|
const tag = this.trackBy ? {
|
|
@@ -24,6 +25,9 @@ export default {
|
|
|
24
25
|
this.options.unshift(tag);
|
|
25
26
|
if (!this.manualTagging) {
|
|
26
27
|
const value = this.multiple ? [...this.value, tag] : tag;
|
|
28
|
+
|
|
29
|
+
console.info(value, this.value, tag);
|
|
30
|
+
|
|
27
31
|
this.input(value);
|
|
28
32
|
}
|
|
29
33
|
},
|