From 8466aff33d2b0e544093a8dc979d3baf6e064857 Mon Sep 17 00:00:00 2001 From: Marshal Date: Thu, 20 Aug 2026 03:59:14 +0000 Subject: [PATCH] feat(bookings): show per-document upload/review audit and download icon on clearance detail --- .../components/bookings/detail/ClearanceReviewSection.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apps/edr-freight-web/backoffice/src/components/bookings/detail/ClearanceReviewSection.tsx b/apps/edr-freight-web/backoffice/src/components/bookings/detail/ClearanceReviewSection.tsx index 291bc0d05..fe58a6029 100644 --- a/apps/edr-freight-web/backoffice/src/components/bookings/detail/ClearanceReviewSection.tsx +++ b/apps/edr-freight-web/backoffice/src/components/bookings/detail/ClearanceReviewSection.tsx @@ -623,6 +623,11 @@ function DocReviewCard({ {hasFile ? doc.file!.name : "Not uploaded by customer"} + {hasFile && doc.uploadedAt ? ( + + Uploaded {formatDateTime(doc.uploadedAt)} + + ) : null}