Skip to content

Commit 309c8fd

Browse files
fix: stop squishing results after updating input
- ref: soal#14
1 parent 6340fe9 commit 309c8fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GeocoderControl.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ 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
},

0 commit comments

Comments
 (0)