mirror of https://github.com/apache/cloudstack.git
Merge release branch 4.13 to master
* 4.13: Endless settings on templates and instances (#3778)
This commit is contained in:
commit
f2708d6636
|
|
@ -3437,6 +3437,13 @@
|
|||
custom: cloudStack.uiCustom.granularDetails({
|
||||
resourceType: 'UserVm',
|
||||
dataProvider: function(args) {
|
||||
// no paging for listVirtualMachines details
|
||||
if (args.page > 1) {
|
||||
args.response.success({
|
||||
data: []
|
||||
});
|
||||
return;
|
||||
}
|
||||
$.ajax({
|
||||
url: createURL('listVirtualMachines&id=' + args.context.instances[0].id),
|
||||
success: function(json) {
|
||||
|
|
|
|||
|
|
@ -2489,6 +2489,13 @@
|
|||
custom: cloudStack.uiCustom.granularDetails({
|
||||
resourceType: 'Template',
|
||||
dataProvider: function(args) {
|
||||
// no paging for listTemplates details
|
||||
if (args.page > 1) {
|
||||
args.response.success({
|
||||
data: []
|
||||
});
|
||||
return;
|
||||
}
|
||||
$.ajax({
|
||||
url: createURL('listTemplates'),
|
||||
data: {
|
||||
|
|
|
|||
Loading…
Reference in New Issue