Skip to content

Commit

Permalink
add common utils
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulBredl committed Jul 25, 2024
1 parent dad10de commit eeb0582
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ public static DataFieldInput intField(String key, int value) {
.build();
}

public static TemplateFieldInput stringField(String key, String value) {
return TemplateFieldInput.builder()
public static DataFieldInput stringField(String key, String value) {
return DataFieldInput.builder()
.setType(AllowedDataType.STRING)
.setKey(key)
.setValue(value)
Expand Down

0 comments on commit eeb0582

Please sign in to comment.