From 5bab0a158c13af474a4bd6ca3e1eefe8ce7a3924 Mon Sep 17 00:00:00 2001 From: Adam Malczewski Date: Sun, 28 Jun 2026 20:15:10 +0900 Subject: fix(tasks): keep fixed 60vh height even with 0 tasks --- src/app/App.svelte | 9 +++------ src/features/surface-host/ui/TodoList.svelte | 15 +++++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/app/App.svelte b/src/app/App.svelte index b2cfd2d..7e5ac7d 100644 --- a/src/app/App.svelte +++ b/src/app/App.svelte @@ -773,13 +773,10 @@ /> {/key} {:else if kind === "tasks"} - + {#key store.activeConversationId} - {#if todoData !== null && todoData.todos.length > 0} - - {:else} -

No tasks yet.

- {/if} + {/key} {:else if kind === "compaction"} -
    + +
      + {#if data !== null && data.todos.length > 0} {#each data.todos as todo, i (i)}
    • @@ -59,5 +60,7 @@
    • {/each} -
    -{/if} + {:else} +
  • No tasks yet.
  • + {/if} +
-- cgit v1.2.3