bug 13009: cloudstack 3.0 new UI - instances page - select "Running", "Stopped", "Destroyed" in top filter will also pass listAll=true to API call.

This commit is contained in:
Jessica Wang 2012-01-11 11:47:34 -08:00
parent 4d1924ca11
commit 645ebd6655

View File

@ -718,13 +718,13 @@
array1.push("&domainid=" + g_domainid + "&account=" + g_account);
break;
case "running":
array1.push("&state=Running");
array1.push("&listAll=true&state=Running");
break;
case "stopped":
array1.push("&state=Stopped");
array1.push("&listAll=true&state=Stopped");
break;
case "destroyed":
array1.push("&state=Destroyed");
array1.push("&listAll=true&state=Destroyed");
break;
}
}