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'); }