Skip to content

Commit e7fa079

Browse files
committed
add comma to the regex used to remove unwanted characters in formatFields
1 parent 895a7de commit e7fa079

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tessellate-main/src/main/java/io/clusterless/tessellate/pipeline/intrinsic/FormatFieldsIntrinsic.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
public class FormatFieldsIntrinsic extends IntrinsicBuilder {
2222

2323
public static final String FORMAT = "format";
24-
public static final String REGEX = "[/\\\\ .-]";
24+
public static final String REGEX = "[/\\\\ .,-]";
2525

2626
public FormatFieldsIntrinsic() {
2727
super("formatFields", FORMAT);

0 commit comments

Comments
 (0)