You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by ru...@apache.org on 2017/12/10 14:52:07 UTC

[whimsy] branch master updated: show footnote only once

This is an automated email from the ASF dual-hosted git repository.

rubys 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 97b8941  show footnote only once
97b8941 is described below

commit 97b8941b195fc4fb7421f4df3219030de05f44cd
Author: Sam Ruby <ru...@intertwingly.net>
AuthorDate: Sun Dec 10 09:51:50 2017 -0500

    show footnote only once
---
 www/roster/views/person.js.rb | 18 ++++++++++--------
 1 file changed, 10 insertions(+), 8 deletions(-)

diff --git a/www/roster/views/person.js.rb b/www/roster/views/person.js.rb
index fd1244e..7a2b1b6 100644
--- a/www/roster/views/person.js.rb
+++ b/www/roster/views/person.js.rb
@@ -33,8 +33,8 @@ class Person < Vue
       _div.row do
         _div.name 'Committees'
         _div.value do
+          noPMCsub = false
           _ul committees do |pmc|
-            noPMCsub = false
             _li {
               _a pmc, href: "committee/#{pmc}"
               if @committer.privateNosub
@@ -44,14 +44,16 @@ class Person < Vue
                 end
               end
             }
-            if noPMCsub
-              _p {
-                _ '(*) could not find a subscription to the private@ mailing list for this committee'
-                _br
-                _ 'Perhaps the subscription address is not listed in the LDAP record'
-              }
-            end
           end
+
+	  if noPMCsub
+            _br
+	    _p {
+	      _ '(*) could not find a subscription to the private@ mailing list for this committee'
+	      _br
+	      _ 'Perhaps the subscription address is not listed in the LDAP record'
+	    }
+	  end
         end
       end
     end

-- 
To stop receiving notification emails like this one, please contact
['"commits@whimsical.apache.org" <co...@whimsical.apache.org>'].

Re: [whimsy] branch master updated: show footnote only once

Posted by sebb <se...@gmail.com>.
On 10 December 2017 at 14:52,  <ru...@apache.org> wrote:
> This is an automated email from the ASF dual-hosted git repository.
>
> rubys 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 97b8941  show footnote only once
> 97b8941 is described below

Oops, thanks for fixing.