Files
dbgate/packages/web/src/modals/CurrentDropDownMenu.svelte
2021-12-02 12:58:22 +01:00

16 lines
420 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}
items={$currentDropDownMenu.items}
targetElement={$currentDropDownMenu.targetElement}
on:close={() => ($currentDropDownMenu = null)}
/>
{/if}