You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by se...@apache.org on 2019/06/01 17:50:53 UTC

[whimsy] branch master updated: Don't show empty list

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 c2b70fc  Don't show empty list
c2b70fc is described below

commit c2b70fc978ede991d88f9435037749bb974d59e2
Author: Sebb <se...@apache.org>
AuthorDate: Sat Jun 1 18:50:49 2019 +0100

    Don't show empty list
---
 www/roster/views/nonpmc/committers.js.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www/roster/views/nonpmc/committers.js.rb b/www/roster/views/nonpmc/committers.js.rb
index 693de1e..a51d9dc 100644
--- a/www/roster/views/nonpmc/committers.js.rb
+++ b/www/roster/views/nonpmc/committers.js.rb
@@ -6,7 +6,7 @@ class NonPMCCommitters < Vue
   def render
     if
       @@nonpmc.committers.all? do |id|
-        @@nonpmc.members.include? id
+        @@nonpmc.members.include? id or @@nonpmc.ldap.include? id
       end
     then
       _h2.committers! 'Committers (' + committers.length + ')'