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
  • Loading branch information
Masterchen09 committed Oct 24, 2024
1 parent f676043 commit fe0a50c
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 fe0a50c

Please sign in to comment.