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 2019/06/15 20:23:51 UTC

[whimsy] branch master updated: mark privates in resolutions

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 8e4e271  mark privates in resolutions
8e4e271 is described below

commit 8e4e271b9241c80e85f17c0bc37d861ef7b5c37b
Author: Sam Ruby <ru...@intertwingly.net>
AuthorDate: Sat Jun 15 16:23:34 2019 -0400

    mark privates in resolutions
---
 www/board/agenda/views/pages/report.js.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www/board/agenda/views/pages/report.js.rb b/www/board/agenda/views/pages/report.js.rb
index 53b738c..ce0e331 100644
--- a/www/board/agenda/views/pages/report.js.rb
+++ b/www/board/agenda/views/pages/report.js.rb
@@ -72,7 +72,7 @@ class Report < Vue
     list << self.names if @@item.people
     list << self.president_attachments if @@item.title == 'President'
 
-    list = [self.linkMinutes] if @@item.attach =~ /^[37][A-Z]$/
+    list = [self.privates, self.linkMinutes] if @@item.attach =~ /^[37][A-Z]$/
 
     list
   end