feat(bookings): show per-document upload/review audit and download icon on clearance detail

This commit is contained in:
Marshal
2026-08-20 03:59:14 +00:00
committed by Hagernesh
parent 0066a87972
commit 8466aff33d

View File

@@ -623,6 +623,11 @@ function DocReviewCard({
<Text fz="12px" c="edr-muted" truncate>
{hasFile ? doc.file!.name : "Not uploaded by customer"}
</Text>
{hasFile && doc.uploadedAt ? (
<Text fz="11px" c="dimmed">
Uploaded {formatDateTime(doc.uploadedAt)}
</Text>
) : null}
</Box>
</Group>