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 and ilgrosso committed Jan 29, 2025
1 parent 386a1f0 commit 1d31084
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,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 1d31084

Please sign in to comment.