mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-20 18:16:00 +00:00
11 lines
299 B
Svelte
11 lines
299 B
Svelte
<script lang="ts">
|
|
import { cloudConnectionsStore } from '../stores';
|
|
import SubDatabaseList from './SubDatabaseList.svelte';
|
|
|
|
export let data;
|
|
</script>
|
|
|
|
{#if data.conid && $cloudConnectionsStore[data.conid]}
|
|
<SubDatabaseList {...$$props} data={$cloudConnectionsStore[data.conid]} />
|
|
{/if}
|