Skip to content

Commit

Permalink
Marking '_' char as break-line character in association popover.
Browse files Browse the repository at this point in the history
  • Loading branch information
Erik Suta committed Feb 4, 2015
1 parent eaa578f commit ccb1049
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -449,7 +449,7 @@ private String createAssociationTooltipText(PrismProperty property){
sb.append(getAttributeName(attr));
sb.append(":");
if (realValue != null) {
sb.append(realValue.toString().replace(",", ",​").replace("@", "@​"));
sb.append(realValue.toString().replace(",", ",​").replace("@", "@​").replace("_", "@​"));
}
sb.append("<br>");
}
Expand Down

0 comments on commit ccb1049

Please sign in to comment.