mirror of https://github.com/apache/cloudstack.git
VPC details: Display 'restart required' field
This commit is contained in:
parent
5cb356024f
commit
75242b49ce
|
|
@ -3841,6 +3841,16 @@
|
|||
cidr: { label: 'label.cidr' },
|
||||
networkdomain: { label: 'label.network.domain' },
|
||||
state: { label: 'label.state' },
|
||||
restartrequired: {
|
||||
label: 'label.restart.required',
|
||||
converter: function(booleanValue) {
|
||||
if (booleanValue == true) {
|
||||
return "<font color='red'>Yes</font>";
|
||||
}
|
||||
|
||||
return "No";
|
||||
}
|
||||
},
|
||||
id: { label: 'label.id' }
|
||||
}
|
||||
],
|
||||
|
|
|
|||
Loading…
Reference in New Issue