Skip to content

Commit

Permalink
feat: ne pas offrir de reprendre l'intégration quand une validation a…
Browse files Browse the repository at this point in the history
… échoué #585
  • Loading branch information
cbrousseau1 committed Dec 17, 2024
1 parent e299e02 commit 6317b27
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { symToStr } from "tsafe/symToStr";

import { routes } from "../../../../../router/router";
import { Upload } from "../../../../../@types/app";
import ReportStatusBadge from "../../../stored_data/StoredDataDetails/ReportTab/ReportStatusBadge";

type UnfinishedUploadListProps = {
datastoreId: string;
Expand All @@ -23,7 +24,10 @@ const UnfinishedUploadList: FC<UnfinishedUploadListProps> = ({ datastoreId, uplo
{uploadList?.map((upload) => (
<div key={upload._id} className={fr.cx("fr-grid-row", "fr-grid-row--middle", "fr-mt-2v")}>
<div className={fr.cx("fr-col")}>
<div className={fr.cx("fr-grid-row", "fr-grid-row--middle")}>{upload.name}</div>
<div className={fr.cx("fr-grid-row", "fr-grid-row--middle")}>
{upload.name}
<ReportStatusBadge status="FAILURE" className={fr.cx("fr-ml-2w")} />
</div>
</div>

<div className={fr.cx("fr-col")}>
Expand Down

0 comments on commit 6317b27

Please sign in to comment.