We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d831ccc commit 4999970Copy full SHA for 4999970
1 file changed
src/lib/components/event/event-summary-table.svelte
@@ -40,6 +40,11 @@
40
41
$: filteredForStatus = (items: IterableEventWithPending[]) =>
42
getFailedOrPendingEvents(items, $eventStatusFilter);
43
+
44
+ const iterableKey = (event: IterableEventWithPending) => {
45
+ if (isPendingNexusOperation(event)) return event.scheduledEventId;
46
+ return event.id;
47
+ };
48
</script>
49
50
<Paginated
@@ -57,7 +62,7 @@
57
62
<HistoryGraph {groups} history={history(visibleItems)} />
58
63
{/if}
59
64
<div class="w-full">
60
- {#each visibleItems as event, index}
65
+ {#each visibleItems as event, index (iterableKey(event))}
61
66
{#if isEventGroup(event)}
67
<EventSummaryRow
68
{event}
0 commit comments