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 2018/07/06 20:37:43 UTC

[whimsy] branch master updated: Avoid selecting divider

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 d297d74  Avoid selecting divider
d297d74 is described below

commit d297d74a83054aea72fec0270f4932d93c41546e
Author: Sebb <se...@apache.org>
AuthorDate: Fri Jul 6 21:37:41 2018 +0100

    Avoid selecting divider
---
 www/project/icla/views/pages/invite.js.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www/project/icla/views/pages/invite.js.rb b/www/project/icla/views/pages/invite.js.rb
index 1c76c51..f17c6b1 100644
--- a/www/project/icla/views/pages/invite.js.rb
+++ b/www/project/icla/views/pages/invite.js.rb
@@ -94,7 +94,7 @@ class Invite < Vue
         Server.data.allData.each_key do |pmc|
           _option pmc if Server.data.allData[pmc]['pmc']
         end
-        _option '---'
+        _option '---', disabled: true # No point letting it be chosen
         Server.data.allData.each_key do |ppmc|
           _option ppmc unless Server.data.allData[ppmc]['pmc']
         end