From 2b9d85e0750185dc5cfd6b650fecd47c6ab25185 Mon Sep 17 00:00:00 2001 From: will Date: Sun, 7 Nov 2010 15:40:25 -0800 Subject: [PATCH] bug 6954: Fixed displaying of snapshots. status 6954: resolved fixed --- ui/scripts/cloud.core.snapshot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/scripts/cloud.core.snapshot.js b/ui/scripts/cloud.core.snapshot.js index 190c918bb1d..f7400383a2c 100644 --- a/ui/scripts/cloud.core.snapshot.js +++ b/ui/scripts/cloud.core.snapshot.js @@ -69,7 +69,7 @@ function snapshotJsonToDetailsTab() { dataType: "json", async: false, success: function(json) { - var items = json.listvirtualmachinesresponse.virtualmachine; + var items = json.listsnapshotsresponse.snapshot; if(items != null && items.length > 0) jsonObj = items[0]; }