Skip to content

Commit 73d8207

Browse files
authored
Fix showGraph var (#2657)
1 parent 465cc18 commit 73d8207

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@
2929
export let loading = false;
3030
export let compact = false;
3131
export let minimized = true;
32-
export let showGraph = !compact;
32+
33+
$: showGraph = !compact;
3334
3435
$: initialItem = $fullEventHistory?.[0];
3536

0 commit comments

Comments
 (0)