Skip to content

Commit 1d31084

Browse files
alberto-bogiilgrosso
authored andcommitted
[SYNCOPE-1858] Define dropdown form property without default value on a macro (#970)
1 parent 386a1f0 commit 1d31084

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/idrepo/common-ui/src/main/java/org/apache/syncope/client/ui/commons/panels/SyncopeFormPanel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ public void setObject(final Date object) {
165165
public List<String> getObject() {
166166
return Optional.ofNullable(prop.getValue()).
167167
map(v -> List.of(v.split(";"))).
168-
orElse(null);
168+
orElse(List.of());
169169
}
170170

171171
@Override

0 commit comments

Comments
 (0)