Skip to content

Commit 31b3298

Browse files
authored
Check for localActivity if compact mode (#2800)
1 parent 9fc96c0 commit 31b3298

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

src/lib/components/event/event-summary-row.svelte

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -250,6 +250,11 @@
250250
onMount(async () => {
251251
if (isLocalActivityMarkerEvent(event)) {
252252
primaryLocalAttribute = await decodeLocalActivity(event);
253+
} else if (
254+
isEventGroup(event) &&
255+
isLocalActivityMarkerEvent(event.initialEvent)
256+
) {
257+
primaryLocalAttribute = await decodeLocalActivity(event.initialEvent);
253258
}
254259
});
255260
</script>

0 commit comments

Comments
 (0)