Skip to content

Commit

Permalink
Fixed checkstyle issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamie Briggs committed Mar 4, 2025
1 parent 180860c commit b22c3ba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ private String buildButtonAttributes(Map<String, String> attributes) {
buttonAttributes.append(" data-prevent-double-click=\"")
.append(attributes.get("preventDoubleClick")).append("\"");
}
if (attributes.containsKey("value")){
if (attributes.containsKey("value")) {
buttonAttributes.append(" value=\"").append(attributes.get("value")).append("\"");
}
return buttonAttributes.toString();
Expand Down

0 comments on commit b22c3ba

Please sign in to comment.