This is an automated email from the ASF dual-hosted git repository.
sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git
The following commit(s) were added to refs/heads/master by this push:
new 2d2ab2f Don't show empty list
2d2ab2f is described below
commit 2d2ab2f9d61d95ce24e883806bcf0054fb9ff7da
Author: Sebb <[email protected]>
AuthorDate: Sat Jun 1 18:57:44 2019 +0100
Don't show empty list
---
www/roster/views/pmc/committers.js.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/www/roster/views/pmc/committers.js.rb
b/www/roster/views/pmc/committers.js.rb
index 7490de5..c98ec72 100644
--- a/www/roster/views/pmc/committers.js.rb
+++ b/www/roster/views/pmc/committers.js.rb
@@ -6,7 +6,7 @@ class PMCCommitters < Vue
def render
if
@@committee.committers.all? do |id|
- @@committee.members.include? id
+ @@committee.members.include? id or @@committee.ldap.include? id
end
then
_h2.committers! 'Committers (' + committers.length + ')'