Skip to content

Commit

Permalink
Add check for primary key (#2289)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-Tideman committed Aug 29, 2024
1 parent ce8a68d commit b2bc572
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/components/event/event-summary-row.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
);
$: secondaryAttribute = getSecondaryAttributeForEvent(
isEventGroup(event) ? event.lastEvent : event,
primaryAttribute.key,
primaryAttribute?.key,
);
$: hasPendingActivity = isEventGroup(event) && event?.pendingActivity;
$: pendingAttempt =
Expand Down

0 comments on commit b2bc572

Please sign in to comment.