Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
skublik committed Apr 3, 2023
2 parents e04df5b + f7e27da commit 9381ebe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,12 @@
*/
public class MidpointForm<T> extends Form<T> {

private static final long DEFAULT_MAX_FILE_COUNT = 10;
private boolean addFakeInputFields = false;

public MidpointForm(String id) {
super(id);
setFileCountMax(DEFAULT_MAX_FILE_COUNT);
}

/**
Expand All @@ -34,7 +36,7 @@ public MidpointForm(String id) {
* To overcome Chrome auto-completion of password and other form fields
*/
public MidpointForm(String id, boolean addFakeInputFields) {
super(id);
this(id);
this.addFakeInputFields = addFakeInputFields;
}

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@
<snakeyaml.version>1.33</snakeyaml.version> <!-- fixes CVE-2022-25857 -->
<!-- END of Spring Boot dependencies overrides -->

<wicket.version>9.12.0</wicket.version>
<wicket.version>9.12.0.e1</wicket.version>
<wicketstuff.version>9.12.0</wicketstuff.version>
<wicket.chartjs.version>0.1</wicket.chartjs.version>
<!-- Groovy 3.0.12 is also default for Spring Boot 2.7.3 -->
Expand Down

0 comments on commit 9381ebe

Please sign in to comment.