Files
dbgate/packages/web/src/modals/CurrentDropDownMenu.svelte
2025-03-26 15:13:31 +00:00

17 lines
461 B
Svelte

<script>
import _ from 'lodash';
import { currentDropDownMenu } from '../stores';
import DropDownMenu from './DropDownMenu.svelte';
</script>
{#if $currentDropDownMenu}
<DropDownMenu
left={$currentDropDownMenu.left}
top={$currentDropDownMenu.top}
bottom={$currentDropDownMenu.bottom}
items={$currentDropDownMenu.items}
targetElement={$currentDropDownMenu.targetElement}
on:close={() => ($currentDropDownMenu = null)}
/>
{/if}