forked from open-webui/open-webui
feat: chat menu tooltip added
This commit is contained in:
parent
79a02b85a8
commit
ffeae78b88
1 changed files with 4 additions and 1 deletions
|
@ -4,13 +4,16 @@
|
|||
import Dropdown from '$lib/components/common/Dropdown.svelte';
|
||||
import GarbageBin from '$lib/components/icons/GarbageBin.svelte';
|
||||
import Pencil from '$lib/components/icons/Pencil.svelte';
|
||||
import Tooltip from '$lib/components/common/Tooltip.svelte';
|
||||
|
||||
export let renameHandler: Function;
|
||||
export let deleteHandler: Function;
|
||||
</script>
|
||||
|
||||
<Dropdown>
|
||||
<slot />
|
||||
<Tooltip content="More">
|
||||
<slot />
|
||||
</Tooltip>
|
||||
|
||||
<div slot="content">
|
||||
<DropdownMenu.Content
|
||||
|
|
Loading…
Reference in a new issue