Skip to content

Commit e3e5be8

Browse files
committed
Merge pull request #1394 from nitin-maharana/CloudStack-Nitin25_4.7
CLOUDSTACK-9268: Display VM in Load balancing rule in UISteps of Repro: ============= 1:Create VMs 2:Make LoadBalancing rule in GUI Name:WWW PrivatePort:80 PublicPort:80 Add VMs:some VMs Expected Result: ============== The VMs which has been already assigned is should not be listed when you add the VM to an existing rule. Actual Result: =========== The VMs which has been already assigned is still being listed when you add the VM to an existing rule. Fix: === Added jsonObj to newly created row in multiedit.js to stop listing the same VM again. * pr/1394: CLOUDSTACK-9268: Display VM in Load balancing rule in UI Signed-off-by: Koushik Das <koushik@apache.org>
2 parents 6f703c4 + a68918f commit e3e5be8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ui/scripts/ui/widgets/multiEdit.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104
$(data).each(function() {
105105
var item = this;
106106
var $itemRow = _medit.multiItem.itemRow(item, options.itemActions, multiRule, $tbody);
107-
107+
$itemRow.data('json-obj', item);
108108
$itemRow.appendTo($tbody);
109109
newItemRows.push($itemRow);
110110

0 commit comments

Comments
 (0)