choose first db if none selected

This commit is contained in:
Martin McKeaveney 2020-04-01 10:17:03 +01:00
parent 869f227519
commit fe89a4fcd1
1 changed files with 7 additions and 1 deletions

View File

@ -1,5 +1,5 @@
<script>
import { tick } from "svelte"
import { tick, onMount } from "svelte"
import { store, backendUiStore } from "../builderStore"
import api from "../builderStore/api"
import getIcon from "../common/icon"
@ -25,6 +25,12 @@
return state
})
}
onMount(() => {
if ($store.appInstances.length > 0) {
selectDatabase($store.appInstances[0]);
}
})
</script>
<div class="root">