feat: front-end allow multiple base per project

Signed-off-by: mertmit <mertmit99@gmail.com>
This commit is contained in:
mertmit
2022-09-12 22:42:37 +03:00
parent 1b369417d3
commit 8edb4e4b2c
7 changed files with 46 additions and 22 deletions

View File

@@ -64,7 +64,9 @@ const { $api } = useNuxtApp()
const { addTab } = useTabs()
const { sqlUi, project, loadTables } = useProject()
const { sqlUis, project, loadTables } = useProject()
const sqlUi = ref(meta.value?.base_id ? sqlUis.value[meta.value?.base_id] : sqlUis.value[0])
const hasSelectColumn = ref<boolean[]>([])