mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-30 04:36:43 +00:00
fix: wrap store with storeToRefs wherever missing
Signed-off-by: Pranav C <pranavxc@gmail.com>
This commit is contained in:
@@ -19,6 +19,7 @@ import {
|
||||
projectTitleValidator,
|
||||
readFile,
|
||||
ref,
|
||||
storeToRefs,
|
||||
useApi,
|
||||
useI18n,
|
||||
useNuxtApp,
|
||||
@@ -33,7 +34,7 @@ const emit = defineEmits(['baseUpdated'])
|
||||
|
||||
const projectStore = useProject()
|
||||
const { loadProject } = projectStore
|
||||
const { project } = projectStore
|
||||
const { project } = storeToRefs(projectStore)
|
||||
|
||||
const useForm = Form.useForm
|
||||
|
||||
|
||||
Reference in New Issue
Block a user