Skip to content

Commit

Permalink
double whoops
Browse files Browse the repository at this point in the history
  • Loading branch information
xxAROX committed Apr 13, 2023
1 parent bb04890 commit 6d9006c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
15 changes: 12 additions & 3 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/main/java/xxAROX/WDForms/forms/elements/Dropdown.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

@ToString(exclude = {"handle","playerHandler"})
public class Dropdown extends Element{
protected List<String> options = new ArrayList<>();
@Getter @Setter protected List<String> options = new ArrayList<>();
@JsonProperty("default") @Getter @Setter private int defaultOptionIndex;
@JsonIgnore @Getter @Setter private Integer value;
@JsonIgnore private Consumer<Dropdown> handle;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

@ToString(exclude = {"handle","playerHandler"})
public class StepSlider extends Element{
private List<String> steps = new ArrayList<>();
@Getter @Setter private List<String> steps = new ArrayList<>();
@JsonProperty("default") @Getter @Setter private Integer defaultStepIndex;
@JsonIgnore @Getter @Setter private Integer value;
@JsonIgnore private Consumer<StepSlider> handle;
Expand Down

0 comments on commit 6d9006c

Please sign in to comment.