Browse Source

WIP

pull/4140/head
flisowna 2 years ago
parent
commit
a85d7eafaf
  1. 2
      packages/nc-gui/components/cell/GeoData.vue

2
packages/nc-gui/components/cell/GeoData.vue

@ -134,7 +134,7 @@ const latLongStr = computed(() => {
// }
const latLong = computed(() => {
const [latitude, longitude] = vModel.value?.split(';') || [null, null]
const [latitude, longitude] = (vModel.value || '').split(';')
return latitude == null || longitude == null
? null

Loading…
Cancel
Save