Fix to ensure an empty string if no default value is set inthe CodeEditorField

This commit is contained in:
Dean 2025-01-30 11:40:15 +00:00
parent 655b809204
commit 352516a8b4
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@
<div class="editor">
{#key jsCompletions}
<CodeEditor
value={jsValue}
value={jsValue || ""}
on:change={onChangeJSValue}
on:blur
completions={jsCompletions}