Skip to content

Commit c5fdf29

Browse files
committed
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.
1 parent 765832a commit c5fdf29

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ui/scripts/network.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1092,7 +1092,7 @@
10921092
label: 'label.restart.required',
10931093
converter: function(booleanValue) {
10941094
if (booleanValue == true)
1095-
return "<font color='red'>Yes</font>";
1095+
return "Yes";
10961096
else if (booleanValue == false)
10971097
return "No";
10981098
}

0 commit comments

Comments
 (0)