diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2014-10-13 17:49:40 +0200 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2014-10-13 17:49:40 +0200 |
commit | 2107915073647ce88cc70115fc24683213acc850 (patch) | |
tree | cb2c7d8508009e35fd57864170b80feb8652f079 | |
parent | abc2aad2a1f1c43b3f936607341dcde3e00e3e55 (diff) | |
download | nextcloud-server-2107915073647ce88cc70115fc24683213acc850.tar.gz nextcloud-server-2107915073647ce88cc70115fc24683213acc850.zip |
fix flickering users
-rw-r--r-- | apps/files_external/js/settings.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/js/settings.js b/apps/files_external/js/settings.js index 50ca282cc8e..07a29a3e41f 100644 --- a/apps/files_external/js/settings.js +++ b/apps/files_external/js/settings.js @@ -339,7 +339,7 @@ $(document).ready(function() { $(tr).find('td').last().removeAttr('style'); $(tr).removeAttr('id'); $(this).remove(); - addSelect2($('tr:not(#addMountPoint) .applicableUsers')); + addSelect2(tr.find('.applicableUsers')); }); function suggestMountPoint(defaultMountPoint) { |