fix feedback popup layout

This commit is contained in:
2026-01-03 19:26:02 +01:00
parent a197c002f4
commit 7590982fd0

View File

@@ -20,7 +20,8 @@
{dateFormat.format(new Date(value))}
{/snippet}
<DataTable
<div class="h-screen flex flex-col justify-between">
<DataTable
data={feedbacks}
count={true}
keys={[
@@ -30,6 +31,9 @@
{ key: 'content', label: 'Inhalt', width: 10 }
]}
onClick={(feedback) => (activeFeedback = feedback)}
/>
/>
<BottomBar feedback={activeFeedback} />
{#key activeFeedback}
<BottomBar feedback={activeFeedback} />
{/key}
</div>