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 (kiegroup#3819)
  • Loading branch information
bxf12315 authored Oct 2, 2023
1 parent ca2aa9c commit a3e1eaf
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 a3e1eaf

Please sign in to comment.