From ea93356598894d91968e39615789f934036cf38c Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Fri, 27 Mar 2015 00:09:35 +0100 Subject: [PATCH] Don't append user in a filtered list if groups don't match --- settings/js/users/users.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/settings/js/users/users.js b/settings/js/users/users.js index 7034972dd15..154003bb840 100644 --- a/settings/js/users/users.js +++ b/settings/js/users/users.js @@ -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'); -- 2.39.5