mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-22 09:56:01 +00:00
map on standalone tab
This commit is contained in:
8
packages/web/src/tabs/MapTab.svelte
Normal file
8
packages/web/src/tabs/MapTab.svelte
Normal file
@@ -0,0 +1,8 @@
|
||||
<script lang="ts">
|
||||
import MapView from '../elements/MapView.svelte';
|
||||
|
||||
export let selection;
|
||||
|
||||
</script>
|
||||
|
||||
<MapView {selection} />
|
||||
@@ -24,6 +24,7 @@ import * as DiagramTab from './DiagramTab.svelte';
|
||||
import * as DbKeyDetailTab from './DbKeyDetailTab.svelte';
|
||||
import * as QueryDataTab from './QueryDataTab.svelte';
|
||||
import * as ConnectionTab from './ConnectionTab.svelte';
|
||||
import * as MapTab from './MapTab.svelte';
|
||||
|
||||
export default {
|
||||
TableDataTab,
|
||||
@@ -52,4 +53,5 @@ export default {
|
||||
DbKeyDetailTab,
|
||||
QueryDataTab,
|
||||
ConnectionTab,
|
||||
MapTab,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user