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 765832a5cf
commit c5fdf2935c

View File

@ -1092,7 +1092,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";
}