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/04/20 01:40:09 UTC

[whimsy] branch master updated: case insensitive match on downcase

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  af6efca   case insensitive match on downcase
af6efca is described below

commit af6efcaeb19d8608341ae116867a9d67184bb125
Author: Sam Ruby <ru...@intertwingly.net>
AuthorDate: Wed Apr 19 21:39:57 2017 -0400

    case insensitive match on downcase
---
 www/board/agenda/views/buttons/publish-minutes.js.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www/board/agenda/views/buttons/publish-minutes.js.rb b/www/board/agenda/views/buttons/publish-minutes.js.rb
index 0fc3919..fe80bef 100644
--- a/www/board/agenda/views/buttons/publish-minutes.js.rb
+++ b/www/board/agenda/views/buttons/publish-minutes.js.rb
@@ -69,7 +69,7 @@ class PublishMinutes < React
 
     agenda.each do |item|
       if item.attach =~ /^7\w$/
-        if item.minutes and item.minutes.include? 'tabled'
+        if item.minutes and item.minutes.downcase().include? 'tabled'
           summary += "    * #{item.title.trim()} (tabled)\n"
         else
           summary += "    * #{item.title.trim()}\n"

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