Skip to content

Commit

Permalink
fix: parameters bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
brockWith committed Dec 1, 2023
1 parent 1564d42 commit 1627bf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion agenta-backend/agenta_backend/models/converters.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def app_variant_db_to_pydantic(
app_id=str(app_variant_db.app.id),
app_name=app_variant_db.app.app_name,
variant_name=app_variant_db.variant_name,
parameters=app_variant_db.parameters,
parameters=app_variant_db.config.parameters,
previous_variant_name=app_variant_db.previous_variant_name,
organization_id=str(app_variant_db.organization.id),
base_name=app_variant_db.base_name,
Expand Down

0 comments on commit 1627bf6

Please sign in to comment.