Skip to content

Commit 33e01d6

Browse files
committed
actframework#500 - fix escape issue - see actframework#505
1 parent 5742db7 commit 33e01d6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/act/cli/view/CliView.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ private String getProperty(Object data, String prop) {
321321
return (escape(data));
322322
} else {
323323
if (data instanceof AdaptiveRecord) {
324-
return S.string(((AdaptiveRecord) data).getValue(prop));
324+
return escape(S.string(((AdaptiveRecord) data).getValue(prop)));
325325
}
326326
return escape($.getProperty(data, prop));
327327
}

0 commit comments

Comments
 (0)