Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
deeleeramone committed Feb 7, 2025
1 parent 36f16f5 commit d1fa594
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ def set_parameter_options(p: dict, p_schema: dict, providers: list[str]) -> dict
if is_provider_specific:
p["available_providers"] = list(available_providers)

if title := p_schema.get("title", ""):
if (title := p_schema.get("title", "")) and title not in providers:
p["label"] = title

return p
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2482,7 +2482,7 @@
"paramName": "release_id"
},
{
"label": "Element Id",
"label": "Element ID",
"description": "The element ID of a specific table in the release.",
"optional": true,
"value": null,
Expand Down

0 comments on commit d1fa594

Please sign in to comment.