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 74403e8  join using comma instead of space to match what the server 
expects
74403e8 is described below

commit 74403e8d278c38e935d0aafe35edc69301ac63be
Author: Sam Ruby <ru...@intertwingly.net>
AuthorDate: Fri Aug 11 15:23:35 2017 -0400

    join using comma instead of space to match what the server expects
---
 www/roster/views/pmc/add.js.rb  | 2 +-
 www/roster/views/pmc/mod.js.rb  | 2 +-
 www/roster/views/ppmc/add.js.rb | 2 +-
 www/roster/views/ppmc/mod.js.rb | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/www/roster/views/pmc/add.js.rb b/www/roster/views/pmc/add.js.rb
index 5aac068..ee3537c 100644
--- a/www/roster/views/pmc/add.js.rb
+++ b/www/roster/views/pmc/add.js.rb
@@ -94,7 +94,7 @@ class PMCAdd < React
       headers: {'Content-Type' => 'application/json'},
       body: {
         project: @@committee.id, 
-        ids: @people.map {|person| person.id}.join(' '), 
+        ids: @people.map {|person| person.id}.join(','), 
         action: action, 
         targets: targets
       }.inspect
diff --git a/www/roster/views/pmc/mod.js.rb b/www/roster/views/pmc/mod.js.rb
index fe9905a..32ca7eb 100644
--- a/www/roster/views/pmc/mod.js.rb
+++ b/www/roster/views/pmc/mod.js.rb
@@ -100,7 +100,7 @@ class PMCMod < React
       headers: {'Content-Type' => 'application/json'},
       body: {
         project: @@committee.id, 
-        ids: @people.map {|person| person.id}.join(' '), 
+        ids: @people.map {|person| person.id}.join(','), 
         action: action, 
         targets: targets
       }.inspect
diff --git a/www/roster/views/ppmc/add.js.rb b/www/roster/views/ppmc/add.js.rb
index cc108e8..b6aaf61 100644
--- a/www/roster/views/ppmc/add.js.rb
+++ b/www/roster/views/ppmc/add.js.rb
@@ -105,7 +105,7 @@ class PPMCAdd < React
       headers: {'Content-Type' => 'application/json'},
       body: {
         project: @@ppmc.id, 
-        ids: @people.map {|person| person.id}.join(' '), 
+        ids: @people.map {|person| person.id}.join(','), 
         action: action, 
         targets: targets
       }.inspect
diff --git a/www/roster/views/ppmc/mod.js.rb b/www/roster/views/ppmc/mod.js.rb
index 1d1b74e..28aaed4 100644
--- a/www/roster/views/ppmc/mod.js.rb
+++ b/www/roster/views/ppmc/mod.js.rb
@@ -118,7 +118,7 @@ class PPMCMod < React
       headers: {'Content-Type' => 'application/json'},
       body: {
         project: @@ppmc.id, 
-        ids: @people.map {|person| person.id}.join(' '), 
+        ids: @people.map {|person| person.id}.join(','), 
         action: action, 
         targets: targets
       }.inspect

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

Reply via email to