Skip to content

Commit

Permalink
[fix] always show the custom lookup
Browse files Browse the repository at this point in the history
  • Loading branch information
marmoure committed Nov 11, 2023
1 parent 6dea832 commit 0db8069
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public List<CIValue> filterAttributeValues(final List<CIValue> list, final WhatP
if(autoCompleteSuggestions != null) {
list.addAll(autoCompleteSuggestions.getSuggestions());
}
if(autoCompleteSuggestions != null && autoCompleteSuggestions.getSuggestions().size() == 0) {
if(autoCompleteSuggestions != null) {
// the value needs to be prefixed with a space character to bump it to the top of the list
list.add(new CustomCIValue(" Custom lookup...", this, autoCompleteSuggestions.autoCompleteContext));
}
Expand Down

0 comments on commit 0db8069

Please sign in to comment.