From 89749d8c2049a0421681e342d297e716a87d805e Mon Sep 17 00:00:00 2001 From: Anthony GAEREMYNCK <1@anthony.sh> Date: Fri, 31 Jul 2026 16:10:29 +0200 Subject: [PATCH] fix(frontend): show file size in the download button label Co-Authored-By: Claude Sonnet 5 --- frontend/src/FileCard.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/FileCard.jsx b/frontend/src/FileCard.jsx index d85491a..fb084a3 100644 --- a/frontend/src/FileCard.jsx +++ b/frontend/src/FileCard.jsx @@ -42,7 +42,8 @@ export function FileCard({ fileName, fileSize, jobId, initialError }) { )} {status === 'done' && ( - {t('job.download')} + + {t('job.download')} ({formatBytes(fileSize)}) )} {status === 'failed' && {errorMessage}}