summaryrefslogtreecommitdiffstats
path: root/apps/files_trashbin/src
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@protonmail.com>2023-03-24 16:27:47 +0100
committerJohn Molakvoæ <skjnldsv@protonmail.com>2023-04-06 14:49:31 +0200
commit0e764f753a3d47bba946dc3f64cef9536ac98d43 (patch)
treea2fa70c22ed666c920fa2575667298e24948cd2c /apps/files_trashbin/src
parent3c3050c76f86c7a8cc2f217f9305cb1051e0eca0 (diff)
downloadnextcloud-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.ts4
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) {