mirror of
https://github.com/open-webui/open-webui
synced 2025-06-23 02:16:52 +00:00
refac
This commit is contained in:
parent
68d8fd69c0
commit
6c8a15fae2
@ -216,7 +216,6 @@ __builtins__.input = input`);
|
|||||||
let debounceTimeout;
|
let debounceTimeout;
|
||||||
|
|
||||||
const drawMermaidDiagram = async () => {
|
const drawMermaidDiagram = async () => {
|
||||||
console.log('drawMermaidDiagram');
|
|
||||||
try {
|
try {
|
||||||
const { svg } = await mermaid.render(`mermaid-${uuidv4()}`, code);
|
const { svg } = await mermaid.render(`mermaid-${uuidv4()}`, code);
|
||||||
mermaidHtml = svg;
|
mermaidHtml = svg;
|
||||||
@ -242,12 +241,6 @@ __builtins__.input = input`);
|
|||||||
debounceTimeout = setTimeout(highlightCode, 10);
|
debounceTimeout = setTimeout(highlightCode, 10);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
onMount(async () => {
|
|
||||||
if (lang === 'mermaid' && (token?.raw ?? '').slice(-4).includes('```')) {
|
|
||||||
await drawMermaidDiagram();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div class="my-2" dir="ltr">
|
<div class="my-2" dir="ltr">
|
||||||
|
Loading…
Reference in New Issue
Block a user