diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-08-23 14:53:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-23 14:53:00 +0200 |
commit | 2219d352072f829b07b48a76ff55b9de667f28e3 (patch) | |
tree | 3c7663b335f40caca0027fce5f4db42d9adabf2d | |
parent | c0f48a7b4002c9def9f13fe54114f3f08a86240b (diff) | |
parent | 78f61b2adef819d70e2875b99142d763e0e7ab40 (diff) | |
download | nextcloud-server-2219d352072f829b07b48a76ff55b9de667f28e3.tar.gz nextcloud-server-2219d352072f829b07b48a76ff55b9de667f28e3.zip |
Merge pull request #10815 from nextcloud/fix/noid/missingreturnval
returning of $tr is expected, otherwise ending up in a JS error
-rw-r--r-- | apps/files_sharing/js/sharedfilelist.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/files_sharing/js/sharedfilelist.js b/apps/files_sharing/js/sharedfilelist.js index 84e4e62f8a1..3a6de0d5012 100644 --- a/apps/files_sharing/js/sharedfilelist.js +++ b/apps/files_sharing/js/sharedfilelist.js @@ -167,6 +167,7 @@ updateRow: function($tr, fileInfo, options) { // no-op, suppress re-rendering + return $tr; }, reload: function() { |