@tagplus/components 4.10.1 → 4.10.2
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/Autosuggest/Autosuggest.vue +2 -2
package/package.json
CHANGED
|
@@ -552,7 +552,7 @@ export default {
|
|
|
552
552
|
const label = !isObject && !isNull && !isUndefined ? value : ''
|
|
553
553
|
const newOption = {
|
|
554
554
|
value,
|
|
555
|
-
currentLabel: this.modifiedLabel || label
|
|
555
|
+
currentLabel: this.modifiedLabel || initialLabel || label
|
|
556
556
|
}
|
|
557
557
|
|
|
558
558
|
if (this.multiple) {
|
|
@@ -618,7 +618,7 @@ export default {
|
|
|
618
618
|
handleQueryChange (val) {
|
|
619
619
|
const _this6 = this
|
|
620
620
|
|
|
621
|
-
// Correção aqui para forçar
|
|
621
|
+
// Correção aqui para forçar primeira request com createOnLoad = false
|
|
622
622
|
if (
|
|
623
623
|
(!this.doRequest && this.previousQuery === val) ||
|
|
624
624
|
this.isOnComposition
|