diff options
| author | Kit La Touche <kit@transneptune.net> | 2024-11-12 09:29:07 -0500 |
|---|---|---|
| committer | Kit La Touche <kit@transneptune.net> | 2024-11-12 09:29:07 -0500 |
| commit | a0007f8ea6a758212b216f788c759e2abb102ab1 (patch) | |
| tree | d303ba2e0aaeee34d4445aa66bb0ff383c759e49 /ui/lib/components/MessageRun.svelte | |
| parent | 24eb775ba77f5a6a78a299d9fdffb34f8f167f8d (diff) | |
| parent | 2fb328089f01776e5bb553a1d50a061396588c8c (diff) | |
Merge branch 'main' into wip/touch-events
Diffstat (limited to 'ui/lib/components/MessageRun.svelte')
| -rw-r--r-- | ui/lib/components/MessageRun.svelte | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/lib/components/MessageRun.svelte b/ui/lib/components/MessageRun.svelte index 2e8c613..83a82a9 100644 --- a/ui/lib/components/MessageRun.svelte +++ b/ui/lib/components/MessageRun.svelte @@ -16,7 +16,7 @@ <span class="chip variant-soft sticky top-o left-0"> @{name}: </span> - {#each messages as { at, body }} - <Message {at} {body} /> + {#each messages as { id, at, body }} + <Message {id} {at} {body} editable={ownMessage} /> {/each} </div> |
