mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-12 20:35:19 +00:00
11 lines
277 B
Svelte
11 lines
277 B
Svelte
|
|
<script lang="ts">
|
||
|
|
import Tooltip from '$lib/components/common/Tooltip.svelte';
|
||
|
|
import type { Token } from 'marked';
|
||
|
|
|
||
|
|
export let token: Token;
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<Tooltip as="span" className="mention" content={token.id} placement="top">
|
||
|
|
{token.triggerChar}{token.label}
|
||
|
|
</Tooltip>
|