Skip to content

Commit

Permalink
MID-4506 lookup table fix
Browse files Browse the repository at this point in the history
  • Loading branch information
KaterynaHonchar committed Oct 2, 2018
1 parent 15556a4 commit 5193c57
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -823,7 +823,7 @@ public void checkInputValue(AutoCompleteTextField input, AjaxRequestTarget targe
if (lookupTable != null) {

panel = new AutoCompleteTextPanel<String>(id, new LookupPropertyModel<>(getModel(),
baseExpression, lookupTable == null ? null : lookupTable.asObjectable()), type) {
baseExpression, lookupTable == null ? null : lookupTable.asObjectable()), String.class) {

@Override
public Iterator<String> getIterator(String input) {
Expand Down

0 comments on commit 5193c57

Please sign in to comment.