mirror of
https://github.com/dbgate/dbgate
synced 2024-11-15 08:16:28 +00:00
14 lines
249 B
Svelte
14 lines
249 B
Svelte
|
<script lang="ts">
|
||
|
import Designer from './Designer.svelte';
|
||
|
</script>
|
||
|
|
||
|
<Designer
|
||
|
{...$$props}
|
||
|
settings={{
|
||
|
showTableCloseButton: false,
|
||
|
allowColumnOperations: false,
|
||
|
allowCreateRefByDrag: false,
|
||
|
allowTableAlias: false,
|
||
|
}}
|
||
|
/>
|