Skip to content

Commit a64e494

Browse files
chore: update multi-query string
1 parent b63de8e commit a64e494

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

dist/vue-mapbox-geocoder.common.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2068,7 +2068,7 @@ var geocoderEvents = {
20682068
},
20692069
$_updateInput: function $_updateInput(results) {
20702070
if (!this.initial) {
2071-
var input = results.query ? results.query.join("") : "";
2071+
var input = results.query ? results.query.join(" ") : "";
20722072
this.$emit("update:input", input);
20732073
}
20742074
},

dist/vue-mapbox-geocoder.umd.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2077,7 +2077,7 @@ var geocoderEvents = {
20772077
},
20782078
$_updateInput: function $_updateInput(results) {
20792079
if (!this.initial) {
2080-
var input = results.query ? results.query.join("") : "";
2080+
var input = results.query ? results.query.join(" ") : "";
20812081
this.$emit("update:input", input);
20822082
}
20832083
},

0 commit comments

Comments
 (0)