mirror of
https://github.com/apache/cloudstack.git
synced 2025-11-02 11:52:28 +01:00
config: don't show egress, ip address tab for VPC network
Fixes #391 Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
This commit is contained in:
parent
d642f0509d
commit
39bf93cf8e
@ -41,11 +41,11 @@ export default {
|
||||
}, {
|
||||
name: 'egress.rules',
|
||||
component: () => import('@/views/network/EgressRulesTab.vue'),
|
||||
show: (record) => { return record.type === 'Isolated' && 'listEgressFirewallRules' in store.getters.apis }
|
||||
show: (record) => { return record.type === 'Isolated' && !('vpcid' in record) && 'listEgressFirewallRules' in store.getters.apis }
|
||||
}, {
|
||||
name: 'public.ip.addresses',
|
||||
component: () => import('@/views/network/IpAddressesTab.vue'),
|
||||
show: (record) => { return record.type === 'Isolated' && 'listPublicIpAddresses' in store.getters.apis }
|
||||
show: (record) => { return record.type === 'Isolated' && !('vpcid' in record) && 'listPublicIpAddresses' in store.getters.apis }
|
||||
}, {
|
||||
name: 'virtual.routers',
|
||||
component: () => import('@/views/network/RoutersTab.vue'),
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user