fix: send empty string instead of null when process has no operation

This commit is contained in:
Pavel
2025-08-21 14:45:03 +02:00
parent 26486f9d63
commit 07f7b7df1b

View File

@@ -173,7 +173,7 @@
</svelte:fragment>
<svelte:fragment slot="2">
{#if !!selectedProcess}
<SqlEditor value={selectedProcess.operation} readOnly />
<SqlEditor value={selectedProcess.operation ?? ''} readOnly />
{/if}
</svelte:fragment>
</VerticalSplitter>