Skip to content

Commit

Permalink
Remove MULTI_LINE_SINGLE_SELECTION
Browse files Browse the repository at this point in the history
  • Loading branch information
markusweigelt committed Dec 7, 2023
1 parent 1cd2da6 commit d392df7
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,7 @@ public boolean isEditable() {
@Override
public boolean isFilterable() {
InputType inputType = getInputType();
if (InputType.MULTIPLE_SELECTION.equals(inputType) || InputType.MULTI_LINE_SINGLE_SELECTION.equals(
inputType) || InputType.ONE_LINE_SINGLE_SELECTION.equals(inputType)) {
if (InputType.MULTIPLE_SELECTION.equals(inputType) || InputType.ONE_LINE_SINGLE_SELECTION.equals(inputType)) {
return settings.isFilterable(declaration.getId());
}
return false;
Expand Down

0 comments on commit d392df7

Please sign in to comment.