Update geocode store to use new naming pattern
This commit is contained in:
parent
67dcb87b81
commit
347e8dcb86
4 changed files with 7 additions and 7 deletions
|
|
@ -621,7 +621,7 @@ import { computed, onMounted, ref } from "vue";
|
|||
import { useRouter } from "vue-router";
|
||||
import ImageUpload, { Image } from "@/components/ImageUpload.vue";
|
||||
import Tooltip from "@/components/Tooltip.vue";
|
||||
import { useGeocodeStore } from "@/store/geocode";
|
||||
import { useStoreGeocode } from "@/store/geocode";
|
||||
import { useStoreLocal } from "@/store/local";
|
||||
import { useStoreLocation } from "@/store/location";
|
||||
import { useStorePublicReport } from "@/store/publicreport";
|
||||
|
|
@ -640,7 +640,7 @@ const currentCamera = ref<Camera | null>(null);
|
|||
const currentLocation = ref<Location | null>(null);
|
||||
const errorMessage = ref("");
|
||||
const formElement = ref<HTMLFormElement | null>(null);
|
||||
const geocode = useGeocodeStore();
|
||||
const geocode = useStoreGeocode();
|
||||
const images = ref<Image[]>([]);
|
||||
const isSubmitting = ref(false);
|
||||
const marker = ref<Marker | null>(null);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue