summaryrefslogtreecommitdiffstats
path: root/apps/files
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2013-11-11 17:14:40 +0100
committerVincent Petry <pvince81@owncloud.com>2013-11-11 17:14:40 +0100
commite285e84e18aa622fd97cde0c9ae41185c06d78df (patch)
treea3f5d30342668ffa9561573a38b171463c7df91e /apps/files
parent841c62208551425361f311969260e95eded9101a (diff)
downloadnextcloud-server-e285e84e18aa622fd97cde0c9ae41185c06d78df.tar.gz
nextcloud-server-e285e84e18aa622fd97cde0c9ae41185c06d78df.zip
Selection summary is now displayed properly
Fixes #5775
Diffstat (limited to 'apps/files')
-rw-r--r--apps/files/js/files.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/files.js b/apps/files/js/files.js
index 2947512ece5..fdaa3aa3342 100644
--- a/apps/files/js/files.js
+++ b/apps/files/js/files.js
@@ -636,7 +636,7 @@ function procesSelection() {
if (selectedFiles.length>0) {
selection += n('files', '%n file', '%n files', selectedFiles.length);
}
- $('#headerName>span.name').text(selection);
+ $('#headerName span.name').text(selection);
$('#modified').text('');
$('table').addClass('multiselect');
}