Skip to content

Commit

Permalink
fix(ui): show ingested entities in ingestion report when ingestion su…
Browse files Browse the repository at this point in the history
…cceeded with warnings (#11704)

Co-authored-by: Gabe Lyons <gabe.lyons@acryl.io>
  • Loading branch information
Masterchen09 and gabe-lyons authored Nov 12, 2024
1 parent 3f5fc9a commit 92183ca
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import {
getStructuredReport,
RUNNING,
SUCCESS,
SUCCEEDED_WITH_WARNINGS,
} from '../utils';
import { ExecutionRequestResult } from '../../../../types.generated';
import { StructuredReport } from './reporting/StructuredReport';
Expand Down Expand Up @@ -190,7 +191,7 @@ export const ExecutionDetailsModal = ({ urn, open, onClose }: Props) => {
<SubHeaderParagraph>{resultSummaryText}</SubHeaderParagraph>
{structuredReport ? <StructuredReport report={structuredReport} /> : null}
</StatusSection>
{status === SUCCESS && (
{(status === SUCCESS || status === SUCCEEDED_WITH_WARNINGS) && (
<IngestedAssetsSection>
{data?.executionRequest?.id && <IngestedAssets id={data?.executionRequest?.id} />}
</IngestedAssetsSection>
Expand Down

0 comments on commit 92183ca

Please sign in to comment.