Skip to content

Commit

Permalink
fix to enable apply button when applying free text with a property #20
Browse files Browse the repository at this point in the history
  • Loading branch information
stuzart committed Sep 28, 2020
1 parent 32ca6cd commit 6248dc6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ public boolean determineApplyButtonState() {
}

ValueListItem item = termJList.getSelectedValue();
if (item == null) {
if (type!=ValidationType.FREETEXT && item == null) {
result = false;
}
return result;
Expand Down

0 comments on commit 6248dc6

Please sign in to comment.