Don't append user in a filtered list if groups don't match

This commit is contained in:
Vincent Petry 2015-03-27 00:09:35 +01:00
parent d082e37270
commit ea93356598
1 changed files with 4 additions and 0 deletions

View File

@ -48,6 +48,10 @@ var UserList = {
* @returns table row created for this user
*/
add: function (user, sort) {
if (this.currentGid && _.indexOf(user.groups, this.currentGid) < 0) {
return;
}
var $tr = $userListBody.find('tr:first-child').clone();
// this removes just the `display:none` of the template row
$tr.removeAttr('style');