Skip to content
This repository has been archived by the owner on Jun 10, 2024. It is now read-only.

Commit

Permalink
fix: LEAP-14: Don't validate items in async Taxonomy
Browse files Browse the repository at this point in the history
They are like dynamic values, but completely uncontrolled, so can't be checked.
  • Loading branch information
hlomzik authored Aug 25, 2023
2 parents 87cc376 + a6c5089 commit d82e51f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion label_studio_tools/core/label_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def parse_config(config_string):
}
if conditionals:
tag_info['conditionals'] = conditionals
if has_variable(tag.attrib.get("value", "")):
if has_variable(tag.attrib.get("value", "")) or tag.attrib.get("apiUrl"):
tag_info['dynamic_labels'] = True
outputs[tag.attrib['name']] = tag_info
elif _is_input_tag(tag):
Expand Down

0 comments on commit d82e51f

Please sign in to comment.