diff --git a/frontend/src/components/Entity.vue b/frontend/src/components/Entity.vue index a4933d9..46fde45 100644 --- a/frontend/src/components/Entity.vue +++ b/frontend/src/components/Entity.vue @@ -31,7 +31,7 @@ import Tabbing from "@/components/layout/Tabbing"; import PermissionList from "@/components/auth/PermissionList"; import EntityBulkAdd from "@/components/EntityBulkAdd"; import Placeholder from "@/components/layout/Placeholder"; -import {useSchema} from "@/store/schema"; +import {useSchema} from "@/composables/schema"; import {useRoute} from "vue-router"; import {api} from "@/composables/api"; diff --git a/frontend/src/components/EntityBulkEdit.vue b/frontend/src/components/EntityBulkEdit.vue index d54e364..d4ff442 100644 --- a/frontend/src/components/EntityBulkEdit.vue +++ b/frontend/src/components/EntityBulkEdit.vue @@ -25,7 +25,7 @@ import BaseLayout from "@/components/layout/BaseLayout"; import EntityForm from "@/components/inputs/EntityForm"; import Placeholder from "@/components/layout/Placeholder"; import {ref, computed, watch} from "vue"; -import {useSchema} from "@/store/schema"; +import {useSchema} from "@/composables/schema"; import {useRoute} from "vue-router"; import {api} from "@/composables/api"; import {alertStore} from "@/composables/alert"; diff --git a/frontend/src/components/Schema.vue b/frontend/src/components/Schema.vue index 3b88c78..53a06d7 100644 --- a/frontend/src/components/Schema.vue +++ b/frontend/src/components/Schema.vue @@ -28,7 +28,7 @@ import Changes from "@/components/change_review/Changes"; import Tabbing from "@/components/layout/Tabbing"; import PermissionList from "@/components/auth/PermissionList"; import Placeholder from "@/components/layout/Placeholder"; -import {useSchema} from "@/store/schema"; +import {useSchema} from "@/composables/schema"; import {useRoute} from "vue-router"; const {getSchema, activeSchema} = useSchema(); diff --git a/frontend/src/store/schema.js b/frontend/src/composables/schema.js similarity index 100% rename from frontend/src/store/schema.js rename to frontend/src/composables/schema.js