This commit is contained in:
Timothy J. Baek 2024-10-05 12:38:44 -07:00
parent 28602b12ea
commit 46328333c7
2 changed files with 2 additions and 0 deletions

View File

@ -347,6 +347,7 @@ class Pipe:
<CodeEditor
bind:this={codeEditor}
value={content}
lang="python"
{boilerplate}
on:change={(e) => {
_content = e.detail.value;

View File

@ -236,6 +236,7 @@ class Tools:
bind:this={codeEditor}
value={content}
{boilerplate}
lang="python"
on:change={(e) => {
_content = e.detail.value;
}}