mirror of https://github.com/apache/cloudstack.git
Fix a bug, failed to show resource limit page in project view due to missing vpc limit type
This commit is contained in:
parent
938498c7fe
commit
5dcf639acc
|
|
@ -227,6 +227,7 @@ label.max.public.ips=Max. public IPs
|
|||
label.max.volumes=Max. volumes
|
||||
label.max.snapshots=Max. snapshots
|
||||
label.max.templates=Max. templates
|
||||
label.max.vpcs=Max. VPCs
|
||||
label.project.dashboard=Project dashboard
|
||||
label.remind.later=Remind me later
|
||||
label.invited.accounts=Invited accounts
|
||||
|
|
|
|||
|
|
@ -1791,6 +1791,7 @@ dictionary = {
|
|||
'label.max.volumes': '<fmt:message key="label.max.volumes"/>',
|
||||
'label.max.snapshots': '<fmt:message key="label.max.snapshots"/>',
|
||||
'label.max.templates': '<fmt:message key="label.max.templates"/>',
|
||||
'label.max.vpcs': '<fmt:message key="label.max.vpcs"/>',
|
||||
'label.remind.later': '<fmt:message key="label.remind.later"/>',
|
||||
'label.invited.accounts': '<fmt:message key="label.invited.accounts"/>',
|
||||
'label.add.accounts.to': '<fmt:message key="label.add.accounts.to"/>',
|
||||
|
|
|
|||
|
|
@ -107,7 +107,11 @@
|
|||
6: {
|
||||
id: 'network',
|
||||
label: 'label.max.networks'
|
||||
}
|
||||
},
|
||||
7: {
|
||||
id: 'vpc',
|
||||
label: 'label.max.vpcs'
|
||||
}
|
||||
};
|
||||
|
||||
return {
|
||||
|
|
|
|||
Loading…
Reference in New Issue