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/09/30 20:53:41 UTC

[whimsy] branch master updated: don't highlight new reports

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 61487e9  don't highlight new reports
61487e9 is described below

commit 61487e994c68d694e6e8b076cc901b3cc1f25c8b
Author: Sam Ruby <ru...@intertwingly.net>
AuthorDate: Sat Sep 30 16:53:26 2017 -0400

    don't highlight new reports
---
 www/board/agenda/views/elements/additional-info.js.rb | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/www/board/agenda/views/elements/additional-info.js.rb b/www/board/agenda/views/elements/additional-info.js.rb
index d4036b0..1b61b06 100644
--- a/www/board/agenda/views/elements/additional-info.js.rb
+++ b/www/board/agenda/views/elements/additional-info.js.rb
@@ -16,7 +16,10 @@
 class AdditionalInfo < Vue
   def render
     # special notes
-    _p.notes @@item.notes if @@item.notes
+    if @@item.notes
+      _p @@item.notes, 
+        class: ('notes' unless @@item.notes =~ /^new, monthly through/)
+    end
 
     # minutes
     minutes = Minutes.get(@@item.title)

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