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
  • Loading branch information
bxf12315 committed Sep 5, 2023
1 parent ca2aa9c commit 1d54030
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 1d54030

Please sign in to comment.