Minor update

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-column-widget@101187 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2014-10-30 09:04:24 +00:00
parent aff05a0829
commit be9230db4d
1 changed files with 2 additions and 1 deletions

View File

@ -303,8 +303,9 @@ public class ReplaceBatchPanel extends FramedPanel implements
sb.appendHtmlConstant("<span " + style + ">"
+ DON_T_REPLACE + "</span>");
} else {
String style = "style='color: green;font-weight:normal'";
sb.appendHtmlConstant("<span " + style + ">" + SafeHtmlUtils.htmlEscape(value)
sb.appendHtmlConstant("<span " + style + ">" + new SafeHtmlBuilder().appendEscaped(value).toSafeHtml().asString()
+ "</span>");
}