mirror of https://github.com/apache/cloudstack.git
cloudstack 3.0 UI - listView - fix a bug that table row was not removed from listView after Remove action on listView completed.
This commit is contained in:
parent
d54d16683c
commit
02bbcf0687
|
|
@ -332,8 +332,8 @@
|
|||
|
||||
remove: function($instanceRow, args) {
|
||||
uiActions.standard($instanceRow, args, {
|
||||
complete: function(args) {
|
||||
$instanceRow.remove();
|
||||
complete: function(args, $newRow) {
|
||||
$newRow.remove();
|
||||
}
|
||||
});
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in New Issue