mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
bug 13726
Don't show destroy action on network details for shared networks or networks w/o Source NAT service status 13726: resolved fixed
This commit is contained in:
parent
313659d730
commit
8f273b0fac
@ -684,6 +684,13 @@
|
|||||||
if (args.context.networks[0].state == 'Destroyed')
|
if (args.context.networks[0].state == 'Destroyed')
|
||||||
return [];
|
return [];
|
||||||
|
|
||||||
|
if (args.context.networks[0].type == 'Shared' ||
|
||||||
|
!$.grep(args.context.networks[0].service, function(service) {
|
||||||
|
return service.name == 'SourceNat';
|
||||||
|
}).length) {
|
||||||
|
return ['edit', 'restart'];
|
||||||
|
}
|
||||||
|
|
||||||
return args.context.actions;
|
return args.context.actions;
|
||||||
},
|
},
|
||||||
data: args.context.networks[0]
|
data: args.context.networks[0]
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user