Skip to content

Commit

Permalink
[SYNCOPE-1858] Define dropdown form property without default value on…
Browse files Browse the repository at this point in the history
… a macro (#970)
  • Loading branch information
alberto-bogi authored Jan 29, 2025
1 parent 691f182 commit c321995
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ public void setObject(final Date object) {
public List<String> getObject() {
return Optional.ofNullable(prop.getValue()).
map(v -> List.of(v.split(";"))).
orElse(null);
orElse(List.of());
}

@Override
Expand Down

0 comments on commit c321995

Please sign in to comment.