Commit 85b2a63b authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

fix: matplotlib

parent ef300248
......@@ -148,7 +148,7 @@
executing = true;
document.pyodideMplTarget = document.getElementById('plt-canvas');
document.pyodideMplTarget = document.getElementById(`plt-canvas-${id}`);
let pyodide = await loadPyodide({
indexURL: '/pyodide/',
......@@ -314,6 +314,6 @@ __builtins__.input = input`);
</div>
{/if}
<div id="plt-canvas" />
<div id="plt-canvas-{id}" />
</div>
{/if}
......@@ -434,10 +434,10 @@
{:else if message.content === ''}
<Skeleton />
{:else}
{#each tokens as token}
{#each tokens as token, tokenIdx}
{#if token.type === 'code'}
<CodeBlock
id={message.id}
id={`${message.id}-${tokenIdx}`}
lang={token.lang}
code={revertSanitizedResponseContent(token.text)}
/>
......
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