diff options
author | John Molakvoæ <skjnldsv@protonmail.com> | 2023-03-24 16:27:47 +0100 |
---|---|---|
committer | John Molakvoæ <skjnldsv@protonmail.com> | 2023-04-06 14:49:31 +0200 |
commit | 0e764f753a3d47bba946dc3f64cef9536ac98d43 (patch) | |
tree | a2fa70c22ed666c920fa2575667298e24948cd2c /apps/files_trashbin/src | |
parent | 3c3050c76f86c7a8cc2f217f9305cb1051e0eca0 (diff) | |
download | nextcloud-server-0e764f753a3d47bba946dc3f64cef9536ac98d43.tar.gz nextcloud-server-0e764f753a3d47bba946dc3f64cef9536ac98d43.zip |
fix(files): fix custom render components reactivity
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/files_trashbin/src')
-rw-r--r-- | apps/files_trashbin/src/main.ts | 4 |
1 files changed, 3 insertions, 1 deletions
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) { |