Skip to content

Commit

Permalink
Properly show mandatory indication in Search Panel if the control is …
Browse files Browse the repository at this point in the history
…mandatory
  • Loading branch information
fjalvingh committed Jan 8, 2025
1 parent bd21015 commit 1fa7e0f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public void setTarget(NodeContainer target) throws Exception {
public void append(SearchControlLine<?, ?> it) throws Exception {
NodeContainer label = it.getLabel();
IControl<?> control = it.getControl();
fb().label(label).item((NodeBase) control);
fb().label(label).mandatory(control.isMandatory()).item((NodeBase) control);
//fb().control(control);
}

Expand Down

0 comments on commit 1fa7e0f

Please sign in to comment.