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/16 13:58:49 UTC

[whimsy] branch master updated: hotlink URLs in special orders too

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 9ce8dd0  hotlink URLs in special orders too
9ce8dd0 is described below

commit 9ce8dd0be207755aab12ec3bd1a7376d5179a9d7
Author: Sam Ruby <ru...@intertwingly.net>
AuthorDate: Sun Jun 16 09:58:34 2019 -0400

    hotlink URLs in special orders too
---
 www/board/agenda/views/pages/report.js.rb | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

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