diff --git a/resources/scripts/components/server/files/MassActionsBar.tsx b/resources/scripts/components/server/files/MassActionsBar.tsx
index 1c81573cc..5d1145fb4 100644
--- a/resources/scripts/components/server/files/MassActionsBar.tsx
+++ b/resources/scripts/components/server/files/MassActionsBar.tsx
@@ -74,7 +74,18 @@ const MassActionsBar = () => {
onConfirmed={onClickConfirmDeletion}
onModalDismissed={() => setShowConfirm(false)}
>
- Deleting files is a permanent operation, you cannot undo this action.
+ Are you sure you want to delete {selectedFiles.length} file(s)?
+
+ Deleting the file(s) listed below is a permanent operation, you cannot undo this action.
+
+
+ { selectedFiles.slice(0, 15).map(file => (
+ {file}
))
+ }
+ { selectedFiles.length > 15 &&
+ + {selectedFiles.length - 15} other(s)
+ }
+
{showMove &&