Skip to content

Commit

Permalink
Fix primefaces#11407: 13.0.6 Chips allow comma as separator again
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware committed Feb 9, 2024
1 parent a7fcb65 commit 5daef71
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ protected void encodeScript(FacesContext context, Chips chips) throws IOExceptio
.attr("addOnBlur", chips.isAddOnBlur(), false)
.attr("addOnPaste", chips.isAddOnPaste(), false)
.attr("unique", chips.isUnique(), false)
.attr("separator", chips.getSeparator(), ",");
.attr("separator", chips.getSeparator());

encodeClientBehaviors(context, chips);

Expand Down

0 comments on commit 5daef71

Please sign in to comment.