Files
dbgate/packages/web/src/buttons/ToolStripCommandSplitButton.svelte
Jan Prochazka 256f97ad42 refactor
2022-02-17 15:41:42 +01:00

12 lines
397 B
Svelte

<script lang="ts">
import _ from 'lodash';
import ToolStripCommandButton from './ToolStripCommandButton.svelte';
import ToolStripSplitDropDownButton from './ToolStripSplitDropDownButton.svelte';
export let commands;
$: menu = _.compact(commands).map(command => ({ command }));
</script>
<ToolStripCommandButton command={commands[0]} component={ToolStripSplitDropDownButton} {menu} />