Files
dbgate/packages/web/src/appobj/SubCloudItemsList.svelte
2025-05-22 09:46:07 +02:00

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}