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 2020/11/19 17:10:17 UTC

[whimsy] branch master updated: See issue #99

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 3e68e23  See issue #99
3e68e23 is described below

commit 3e68e23df95215b8d958265751e74274758a9598
Author: Sebb <se...@apache.org>
AuthorDate: Thu Nov 19 17:10:07 2020 +0000

    See issue #99
---
 www/board/agenda/views/buttons/remind-actions.js.rb | 2 +-
 www/board/agenda/views/buttons/reminders.js.rb      | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/www/board/agenda/views/buttons/remind-actions.js.rb b/www/board/agenda/views/buttons/remind-actions.js.rb
index 3c61b97..1a196b9 100644
--- a/www/board/agenda/views/buttons/remind-actions.js.rb
+++ b/www/board/agenda/views/buttons/remind-actions.js.rb
@@ -59,7 +59,7 @@ class ActionReminder < Vue
       elsif response.count == @list.length
         alert("Reminders have been sent to: #{response.sent.keys.join(', ')}.")
       elsif response.count and response.unsent
-        alert("Error: no emails were sent to #{response.unsent.join(', ')}")
+        alert("Error: no emails were sent to #{response.unsent.inspect}")
       else
         alert("No reminders were sent")
       end
diff --git a/www/board/agenda/views/buttons/reminders.js.rb b/www/board/agenda/views/buttons/reminders.js.rb
index 1a8ade4..fc22bd6 100644
--- a/www/board/agenda/views/buttons/reminders.js.rb
+++ b/www/board/agenda/views/buttons/reminders.js.rb
@@ -109,7 +109,7 @@ class InitialReminder < Vue
       elsif response.count == data.pmcs.length
         alert("Reminders have been sent to: #{data.pmcs.join(', ')}.")
       elsif response.count and response.unsent
-        alert("Error: no emails were sent to #{response.unsent.join(', ')}")
+        alert("Error: no emails were sent to #{response.unsent.inspect}")
       else
         alert("No reminders were sent")
       end