diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2017-10-30 15:10:21 +0100 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2017-10-30 15:59:43 +0100 |
commit | d5f1cef6420c7450ce960f469fd10557ea8fcdd9 (patch) | |
tree | cdc3245e7dd4e1bb280093ff56701b52383d7bcf /apps/comments/js | |
parent | 61db8615f4921c12c4c7090e87701b1bdbb2c186 (diff) | |
download | nextcloud-server-d5f1cef6420c7450ce960f469fd10557ea8fcdd9.tar.gz nextcloud-server-d5f1cef6420c7450ce960f469fd10557ea8fcdd9.zip |
fix comment sorter
background: we have a flat hierarchy of comments, not a tree. therefore we
can also remove again the unnecessary additions.
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'apps/comments/js')
-rw-r--r-- | apps/comments/js/commentstabview.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/comments/js/commentstabview.js b/apps/comments/js/commentstabview.js index 7b5a25b7e8e..4d67ca90825 100644 --- a/apps/comments/js/commentstabview.js +++ b/apps/comments/js/commentstabview.js @@ -238,7 +238,7 @@ search: query, itemType: 'files', itemId: s.model.get('id'), - sorter: 'comments|share-recipients', + sorter: 'commenters|share-recipients', limit: OC.appConfig.comments.maxAutoCompleteResults }, function (data) { |