fix: conditionally filter parent locations (#133)

This commit is contained in:
Hayden
2022-11-02 11:54:43 -08:00
committed by GitHub
parent fbcbde836a
commit 8e1947d971
18 changed files with 135 additions and 67 deletions

View File

@@ -16,7 +16,7 @@
const auth = useAuthStore();
const locationStore = useLocationStore();
const locations = computed(() => locationStore.locations);
const locations = computed(() => locationStore.parentLocations);
const labelsStore = useLabelStore();
const labels = computed(() => labelsStore.labels);