Network details: remove font tag from field value

Embedded HTML is not supported in detail view results,
so remove embedded font tag to prevent the tag characters from being displayed.
This commit is contained in:
Brian Federle 2013-10-24 10:52:49 -07:00
parent 7c3a7fe312
commit be99da8d64
1 changed files with 1 additions and 1 deletions

View File

@ -1098,7 +1098,7 @@
label: 'label.restart.required',
converter: function(booleanValue) {
if (booleanValue == true)
return "<font color='red'>Yes</font>";
return "Yes";
else if (booleanValue == false)
return "No";
}