Fix to ensure an empty string if no default value is set inthe CodeEditorField
This commit is contained in:
parent
655b809204
commit
352516a8b4
|
@ -135,7 +135,7 @@
|
||||||
<div class="editor">
|
<div class="editor">
|
||||||
{#key jsCompletions}
|
{#key jsCompletions}
|
||||||
<CodeEditor
|
<CodeEditor
|
||||||
value={jsValue}
|
value={jsValue || ""}
|
||||||
on:change={onChangeJSValue}
|
on:change={onChangeJSValue}
|
||||||
on:blur
|
on:blur
|
||||||
completions={jsCompletions}
|
completions={jsCompletions}
|
||||||
|
|
Loading…
Reference in New Issue