1
0
Fork 0
mirror of synced 2024-07-06 15:00:49 +12:00

fix small bug where database was not shown on refresh

This commit is contained in:
kevmodrome 2020-04-09 11:06:32 +02:00
parent 5a3de93734
commit 99bdf3fea5

View file

@ -1,3 +1,25 @@
<script>
import { store, backendUiStore } from "builderStore"
import { goto } from "@sveltech/routify"
import { onMount } from "svelte"
$: instances = $store.appInstances
$: views = $store.hierarchy.indexes
async function selectDatabase(database) {
backendUiStore.actions.records.select(null)
backendUiStore.actions.views.select(views[0])
backendUiStore.actions.database.select(database)
}
onMount(async () => {
if ($store.appInstances.length > 0) {
await selectDatabase($store.appInstances[0])
$goto(`./${$backendUiStore.selectedDatabase.id}`)
}
})
</script>
<div class="root">
<div class="node-view">
<slot />