Skip to content

Commit

Permalink
JBPM-10193 UI error: unexpected system error occurred when access For…
Browse files Browse the repository at this point in the history
…m asset and also Task form which have listbox component (#3819) (#3820)

Co-authored-by: Bai Xiaofeng <bxf12315@gmail.com>
  • Loading branch information
github-actions[bot] and bxf12315 committed Oct 25, 2023
1 parent d573acb commit ce18edf
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ public void refreshSelectorOptions() {
backendSelectorDataProviderService.call(new RemoteCallback<SelectorData>() {
@Override
public void callback(SelectorData data) {
refreshSelectorOptions(data);
if (data.getValues() != null) {
refreshSelectorOptions(data);
}
}
}).getDataFromProvider(renderingContext,
field.getDataProvider());
Expand Down

0 comments on commit ce18edf

Please sign in to comment.