aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/files/src/actions/deleteUtils.ts28
1 files changed, 14 insertions, 14 deletions
diff --git a/apps/files/src/actions/deleteUtils.ts b/apps/files/src/actions/deleteUtils.ts
index b781be0ff16..ef395bae5b7 100644
--- a/apps/files/src/actions/deleteUtils.ts
+++ b/apps/files/src/actions/deleteUtils.ts
@@ -43,20 +43,6 @@ export const isAllFolders = (nodes: Node[]) => {
export const displayName = (nodes: Node[], view: View) => {
/**
- * If we're in the trashbin, we can only delete permanently
- */
- if (view.id === 'trashbin' || !isTrashbinEnabled()) {
- return t('files', 'Delete permanently')
- }
-
- /**
- * If we're in the sharing view, we can only unshare
- */
- if (isMixedUnshareAndDelete(nodes)) {
- return t('files', 'Delete and unshare')
- }
-
- /**
* If those nodes are all the root node of a
* share, we can only unshare them.
*/
@@ -79,6 +65,20 @@ export const displayName = (nodes: Node[], view: View) => {
}
/**
+ * If we're in the trashbin, we can only delete permanently
+ */
+ if (view.id === 'trashbin' || !isTrashbinEnabled()) {
+ return t('files', 'Delete permanently')
+ }
+
+ /**
+ * If we're in the sharing view, we can only unshare
+ */
+ if (isMixedUnshareAndDelete(nodes)) {
+ return t('files', 'Delete and unshare')
+ }
+
+ /**
* If we're only selecting files, use proper wording
*/
if (isAllFiles(nodes)) {