Timothy J. Baek před 6 měsíci
rodič
revize
46328333c7

+ 1 - 0
src/lib/components/workspace/Functions/FunctionEditor.svelte

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

+ 1 - 0
src/lib/components/workspace/Tools/ToolkitEditor.svelte

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