Skip to content

Commit 35b7b1d

Browse files
Merge pull request soal#9 from geospoc/fix/results-squishing-issue
fix: results squishing issue
2 parents 6340fe9 + d0d23f8 commit 35b7b1d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/GeocoderControl.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,15 +143,15 @@ export default {
143143

144144
$_updateInput(results) {
145145
if (!this.initial) {
146-
const input = results.query ? results.query.join('') : '';
146+
const input = results.query ? results.query.join(' ') : ' ';
147147
this.$emit('update:input', input);
148148
}
149149
},
150150

151151
query(query) {
152152
if (this.control) {
153153
this.$emit('update:input', query);
154-
return this.contol.query(query);
154+
return this.control.query(query);
155155
}
156156
return null;
157157
},

0 commit comments

Comments
 (0)