Commit 01f62286 authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

fix

parent e9d14601
...@@ -279,14 +279,14 @@ ...@@ -279,14 +279,14 @@
editedContent = ''; editedContent = '';
await tick(); await tick();
renderStyling(); renderLatex();
}; };
const cancelEditMessage = async () => { const cancelEditMessage = async () => {
edit = false; edit = false;
editedContent = ''; editedContent = '';
await tick(); await tick();
renderStyling(); renderLatex();
}; };
const generateImage = async (message) => { const generateImage = async (message) => {
...@@ -311,7 +311,7 @@ ...@@ -311,7 +311,7 @@
$: if (!edit) { $: if (!edit) {
(async () => { (async () => {
await tick(); await tick();
renderStyling(); renderLatex();
await mermaid.run({ await mermaid.run({
querySelector: '.mermaid' querySelector: '.mermaid'
...@@ -321,7 +321,7 @@ ...@@ -321,7 +321,7 @@
onMount(async () => { onMount(async () => {
await tick(); await tick();
renderStyling(); renderLatex();
await mermaid.run({ await mermaid.run({
querySelector: '.mermaid' querySelector: '.mermaid'
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment