improved handling of null values when mapping entities to json

This commit is contained in:
2025-07-25 23:02:54 +02:00
parent 01a7389665
commit 3d81ddd3c5
15 changed files with 81 additions and 124 deletions

View File

@@ -175,9 +175,11 @@
</td>
</tr>
<tr>
<th>{t('subtasks')}</th>
<td class="children">
<th>
{t('subtasks')}
<button onclick={addChild} >{t('add_subtask')}</button>
</th>
<td class="children">
{#if children}
<TaskList tasks={children} {estimated_time} />
{/if}