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:43:08 UTC

[whimsy] branch master updated: && does not work

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 9f5b75d  && does not work
9f5b75d is described below

commit 9f5b75d89f1706e780e180713aa4b996ffe26641
Author: Sebb <se...@apache.org>
AuthorDate: Sat Jun 1 18:43:04 2019 +0100

    && does not work
---
 www/roster/views/nonpmc/members.js.rb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/www/roster/views/nonpmc/members.js.rb b/www/roster/views/nonpmc/members.js.rb
index 4049d92..5c34f83 100644
--- a/www/roster/views/nonpmc/members.js.rb
+++ b/www/roster/views/nonpmc/members.js.rb
@@ -144,9 +144,9 @@ class NonPMCMember < Vue
       elsif not @@person.date
         _td.issue.clickable 'not in committee-info.txt', onClick: self.select
         # TODO the LDAP groups are not set up in the usual way so this is not all that useful at present
-      elsif @@nonpmc.hasLDAP && not @@person.ldap
+      elsif @@nonpmc.hasLDAP and not @@person.ldap
         _td.issue.clickable 'not in LDAP', onClick: self.select
-      elsif @@nonpmc.hasLDAP && not @@nonpmc.committers.include? @@person.id
+      elsif @@nonpmc.hasLDAP and not @@nonpmc.committers.include? @@person.id
         _td.issue.clickable 'not in committer list', onClick: self.select
       elsif @@person.id == @@nonpmc.chair
         _td.chair.clickable 'chair', onClick: self.select