Thomas Vachuska
Committed by Gerrit Code Review

Fixed a defect in client/server interaction when creating host intent.

Change-Id: I09a8e12e5ff78349b7d57b492a018642ff5e7bad
...@@ -787,7 +787,8 @@ ...@@ -787,7 +787,8 @@
787 function addIntentAction() { 787 function addIntentAction() {
788 sendMessage('addHostIntent', { 788 sendMessage('addHostIntent', {
789 one: getSelId(0), 789 one: getSelId(0),
790 - two: getSelId(1) 790 + two: getSelId(1),
791 + ids: [ getSelId(0), getSelId(1) ]
791 }); 792 });
792 } 793 }
793 794
......