Skip to content

Commit 13cef5c

Browse files
author
Aare Puussaar
committed
🐛 join error on input query
1 parent d9c7d8e commit 13cef5c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dist/vue-mapbox-geocoder.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vue-mapbox-geocoder.umd.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/MglGeocoderControl.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@
135135
136136
$_updateInput(results) {
137137
if (!this.initial) {
138-
const input = results.query || ''
138+
const input = results.query ? results.query.join('') : ''
139139
this.$emit('update:input', input)
140140
}
141141
},

0 commit comments

Comments
 (0)