diff --git a/ui/scripts/system.js b/ui/scripts/system.js index 153eebdd0e3..edd8cd1d1f0 100644 --- a/ui/scripts/system.js +++ b/ui/scripts/system.js @@ -3914,11 +3914,18 @@ activeviewersessions: { label: 'label.active.sessions' } } ], - dataProvider: function(args) { - args.response.success({ - actionFilter: systemvmActionfilter, - data: args.jsonObj - }); + dataProvider: function(args) { + $.ajax({ + url: createURL("listSystemVms&id=" + args.context.systemVMs[0].id), + dataType: "json", + async: true, + success: function(json) { + args.response.success({ + actionFilter: systemvmActionfilter, + data: json.listsystemvmsresponse.systemvm[0] + }); + } + }); } } }