mirror of
https://github.com/apache/cloudstack.git
synced 2025-11-02 20:02:29 +01:00
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:
parent
4d1924ca11
commit
645ebd6655
@ -718,13 +718,13 @@
|
|||||||
array1.push("&domainid=" + g_domainid + "&account=" + g_account);
|
array1.push("&domainid=" + g_domainid + "&account=" + g_account);
|
||||||
break;
|
break;
|
||||||
case "running":
|
case "running":
|
||||||
array1.push("&state=Running");
|
array1.push("&listAll=true&state=Running");
|
||||||
break;
|
break;
|
||||||
case "stopped":
|
case "stopped":
|
||||||
array1.push("&state=Stopped");
|
array1.push("&listAll=true&state=Stopped");
|
||||||
break;
|
break;
|
||||||
case "destroyed":
|
case "destroyed":
|
||||||
array1.push("&state=Destroyed");
|
array1.push("&listAll=true&state=Destroyed");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user