diff --git a/ui/scripts/storage.js b/ui/scripts/storage.js index e7c9f6c0dce..602f0bee03a 100644 --- a/ui/scripts/storage.js +++ b/ui/scripts/storage.js @@ -1141,12 +1141,20 @@ ], dataProvider: function(args) { - args.response.success( - { - actionFilter: snapshotActionfilter, - data: args.context.snapshots[0] - } - ); + $.ajax({ + url: createURL("listSnapshots&id=" + args.context.snapshots[0].id), + dataType: "json", + async: true, + success: function(json) { + var jsonObj = json.listsnapshotsresponse.snapshot[0]; + args.response.success( + { + actionFilter: snapshotActionfilter, + data: jsonObj + } + ); + } + }); } } }