diff --git a/app/components/ltLocationInput.vue b/app/components/ltLocationInput.vue index a5963be..8d6f25e 100644 --- a/app/components/ltLocationInput.vue +++ b/app/components/ltLocationInput.vue @@ -4,7 +4,8 @@ :value="modelValue.csv" class="form-control" type="text" - @blur="event => updateLatLng((event.target as HTMLInputElement).value)" + @blur="updateLatLng(($event.target as HTMLInputElement).value)" + @paste="updateLatLng($event.clipboardData?.getData('text'))" />