Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dist/js/field.js

Large diffs are not rendered by default.

4 changes: 1 addition & 3 deletions resources/js/components/FormField.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
@input="toggleLatLng"
class="py-2 pr-2"
/>
<label @click="toggleLatLng" class="inline-block text-80 pt-2 leading-tight">Show Coordinations</label>
<label @click="toggleLatLng" class="inline-block text-80 pt-2 leading-tight">Show Coordinates</label>
</div>
</div>
<div v-show="field.withLatLng" class="flex flex-wrap w-full">
Expand Down Expand Up @@ -133,7 +133,6 @@ export default {
},

initMap() {
debugger;
const element = this.$refs.map;
let center = new google.maps.LatLng(this.addressData.latitude, this.addressData.longitude)

Expand Down Expand Up @@ -209,7 +208,6 @@ export default {
_this.addressData.formatted_address = null
_this.$refs.address.update('');
_this.$emit('addressChanged', _this.addressData)
console.log(status);
}
});
},
Expand Down