From afb673f9e0a69a90f77c85cfa8d05be967245c4d Mon Sep 17 00:00:00 2001 From: Anton SHEPILOV Date: Mon, 22 Jul 2024 14:12:12 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9BFix=20text=20in=20the=20upload=20qu?= =?UTF-8?q?eue?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../file-uploads/pending-file-components/pending-files-list.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tdrive/frontend/src/app/components/file-uploads/pending-file-components/pending-files-list.tsx b/tdrive/frontend/src/app/components/file-uploads/pending-file-components/pending-files-list.tsx index 36f131ce6..b2d20682c 100644 --- a/tdrive/frontend/src/app/components/file-uploads/pending-file-components/pending-files-list.tsx +++ b/tdrive/frontend/src/app/components/file-uploads/pending-file-components/pending-files-list.tsx @@ -42,7 +42,7 @@ export default ({ pendingFilesState, visible }: PropsType) => { const momentTimeRemaining = moment(new Date().getTime() + timeRemainingInMs).fromNow(); if (momentTimeRemaining !== 'Invalid date') { - return Languages.t('components.pending_file_list.estimation.end') + `Will end ${momentTimeRemaining}...`; + return Languages.t('components.pending_file_list.estimation.end') + ` ${momentTimeRemaining}...`; } else { return Languages.t('components.pending_file_list.estimation.approximations'); }