monkey-style-guide-v2 0.0.67 → 0.0.68
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.
|
@@ -2661,6 +2661,9 @@ class MonkeyAutocompleteAddressComponent {
|
|
|
2661
2661
|
set value(value) {
|
|
2662
2662
|
if (this._value !== value && value !== undefined) {
|
|
2663
2663
|
this._value = value;
|
|
2664
|
+
if (!this.searchData) {
|
|
2665
|
+
this.searchData = value;
|
|
2666
|
+
}
|
|
2664
2667
|
this._onChange(value);
|
|
2665
2668
|
this._onTouched(value);
|
|
2666
2669
|
}
|