Skip to content

Commit

Permalink
Merge branch 'release/30.x'
Browse files Browse the repository at this point in the history
* release/30.x:
  #4423 - Popover always showing "tag not in tagset" even if tag is in tagset
  • Loading branch information
reckart committed Jan 3, 2024
2 parents 2fea040 + c997b4f commit 7efcb92
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,7 @@ public List<VLazyDetailGroup> lookupLazyDetails(AnnotationFeature aFeature, Obje
if (aValue instanceof Iterable) {
var values = (Iterable<?>) aValue;
for (var v : values) {
if (v instanceof String) {
var value = (String) v;
if (v instanceof String value) {
var tag = schemaService.getTag(value, aFeature.getTagset());

if (isNotBlank(value) && aFeature.getTagset() != null && tag.isEmpty()) {
Expand Down

0 comments on commit 7efcb92

Please sign in to comment.