mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
bug 12229: guest network - network tabs - Restart required field - highlight it in red if value is Yes (to get user's attention).
This commit is contained in:
parent
f3cd93f835
commit
4fc953ed34
@ -896,7 +896,12 @@
|
||||
},
|
||||
restartrequired: {
|
||||
label: 'Restart required',
|
||||
converter: cloudStack.converters.toBooleanText
|
||||
converter: function(booleanValue) {
|
||||
if(booleanValue == true)
|
||||
return "<font color='red'>Yes</font>";
|
||||
else if(booleanValue == false)
|
||||
return "No";
|
||||
},
|
||||
},
|
||||
isdefault: {
|
||||
label: 'Default',
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user