VPC details: Display 'restart required' field

This commit is contained in:
Brian Federle 2012-08-03 12:03:41 -07:00
parent 5cb356024f
commit 75242b49ce
1 changed files with 10 additions and 0 deletions

View File

@ -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' }
}
],