Skip to content

Commit 92183ca

Browse files
fix(ui): show ingested entities in ingestion report when ingestion succeeded with warnings (datahub-project#11704)
Co-authored-by: Gabe Lyons <[email protected]>
1 parent 3f5fc9a commit 92183ca

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

datahub-web-react/src/app/ingest/source/executions/ExecutionRequestDetailsModal.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ import {
1717
getStructuredReport,
1818
RUNNING,
1919
SUCCESS,
20+
SUCCEEDED_WITH_WARNINGS,
2021
} from '../utils';
2122
import { ExecutionRequestResult } from '../../../../types.generated';
2223
import { StructuredReport } from './reporting/StructuredReport';
@@ -190,7 +191,7 @@ export const ExecutionDetailsModal = ({ urn, open, onClose }: Props) => {
190191
<SubHeaderParagraph>{resultSummaryText}</SubHeaderParagraph>
191192
{structuredReport ? <StructuredReport report={structuredReport} /> : null}
192193
</StatusSection>
193-
{status === SUCCESS && (
194+
{(status === SUCCESS || status === SUCCEEDED_WITH_WARNINGS) && (
194195
<IngestedAssetsSection>
195196
{data?.executionRequest?.id && <IngestedAssets id={data?.executionRequest?.id} />}
196197
</IngestedAssetsSection>

0 commit comments

Comments
 (0)