We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9fc96c0 commit 31b3298Copy full SHA for 31b3298
1 file changed
src/lib/components/event/event-summary-row.svelte
@@ -250,6 +250,11 @@
250
onMount(async () => {
251
if (isLocalActivityMarkerEvent(event)) {
252
primaryLocalAttribute = await decodeLocalActivity(event);
253
+ } else if (
254
+ isEventGroup(event) &&
255
+ isLocalActivityMarkerEvent(event.initialEvent)
256
+ ) {
257
+ primaryLocalAttribute = await decodeLocalActivity(event.initialEvent);
258
}
259
});
260
</script>
0 commit comments