From d392df7c5302087a8599899bd8209687b978eeb1 Mon Sep 17 00:00:00 2001 From: Markus Weigelt Date: Thu, 7 Dec 2023 12:59:46 +0100 Subject: [PATCH] Remove MULTI_LINE_SINGLE_SELECTION --- .../src/main/java/org/kitodo/dataeditor/ruleset/KeyView.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Kitodo-DataEditor/src/main/java/org/kitodo/dataeditor/ruleset/KeyView.java b/Kitodo-DataEditor/src/main/java/org/kitodo/dataeditor/ruleset/KeyView.java index 411099e1787..b09b3715894 100644 --- a/Kitodo-DataEditor/src/main/java/org/kitodo/dataeditor/ruleset/KeyView.java +++ b/Kitodo-DataEditor/src/main/java/org/kitodo/dataeditor/ruleset/KeyView.java @@ -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;