From 2f7378046ab81af847f469339ac3772acb376463 Mon Sep 17 00:00:00 2001 From: Alex Tideman Date: Tue, 17 Sep 2024 19:15:58 -0500 Subject: [PATCH] Remove child workflow timeline from row --- .../components/event/event-details-full.svelte | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/src/lib/components/event/event-details-full.svelte b/src/lib/components/event/event-details-full.svelte index 25a0c45e9..68e4a9cb5 100644 --- a/src/lib/components/event/event-details-full.svelte +++ b/src/lib/components/event/event-details-full.svelte @@ -5,11 +5,8 @@ import { spaceBetweenCapitalLetters } from '$lib/utilities/format-camel-case'; import { formatDate } from '$lib/utilities/format-date'; import { formatAttributes } from '$lib/utilities/format-event-attributes'; - import { isChildWorkflowExecutionStartedEvent } from '$lib/utilities/is-event-type'; import { isPendingActivity } from '$lib/utilities/is-pending-activity'; - import GraphWidget from '../lines-and-dots/svg/graph-widget.svelte'; - import EventDetailsRowExpanded from './event-details-row-expanded.svelte'; import EventLinksExpanded from './event-links-expanded.svelte'; @@ -18,16 +15,12 @@ $: pendingEvent = group?.pendingActivity || group?.pendingNexusOperation; $: showEventGroup = group && (group.eventList.length > 1 || pendingEvent); - $: childWorkflowEvent = group?.eventList.find( - isChildWorkflowExecutionStartedEvent, - ); {#if showEventGroup}
{#each group.eventList as groupEvent} {@const attributes = formatAttributes(groupEvent)} @@ -66,15 +59,6 @@
{/if}
- {#if childWorkflowEvent} - - {/if} {:else if event} {@const attributes = formatAttributes(event)}