diff options
author | Vincent Petry <pvince81@owncloud.com> | 2013-11-11 17:14:40 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2013-11-11 17:14:40 +0100 |
commit | e285e84e18aa622fd97cde0c9ae41185c06d78df (patch) | |
tree | a3f5d30342668ffa9561573a38b171463c7df91e /apps/files | |
parent | 841c62208551425361f311969260e95eded9101a (diff) | |
download | nextcloud-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.js | 2 |
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'); } |