From 0e764f753a3d47bba946dc3f64cef9536ac98d43 Mon Sep 17 00:00:00 2001 From: John Molakvoæ Date: Fri, 24 Mar 2023 16:27:47 +0100 Subject: fix(files): fix custom render components reactivity MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: John Molakvoæ --- apps/files_trashbin/src/main.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'apps/files_trashbin/src') diff --git a/apps/files_trashbin/src/main.ts b/apps/files_trashbin/src/main.ts index 13b37836774..dfa88bded93 100644 --- a/apps/files_trashbin/src/main.ts +++ b/apps/files_trashbin/src/main.ts @@ -54,7 +54,9 @@ Navigation.register({ span.textContent = moment.unix(deletionTime).fromNow() return span } - span.textContent = translate('files_trashbin', 'Deleted a long time ago') + + // Unknown deletion time + span.textContent = translate('files_trashbin', 'A long time ago') return span }, sort(nodeA, nodeB) { -- cgit v1.2.3