Skip to content

Commit

Permalink
Merge branch 'aarthy/fix' into 'enterprise'
Browse files Browse the repository at this point in the history
fix(overview): fix broken expanded cards

See merge request dkinternal/testgen/dataops-testgen!80
  • Loading branch information
ci bot committed Sep 30, 2024
2 parents c5506df + c578534 commit c48607d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testgen/ui/views/overview.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def render_table_group_expanded(table_group_id: str, project_code: str) -> None:

test_suites_df: pd.DataFrame = test_suite_service.get_by_project(project_code, table_group_id)

for suite in test_suites_df:
for _, suite in test_suites_df.iterrows():
render_test_suite_item(suite, column_spec)


Expand Down

0 comments on commit c48607d

Please sign in to comment.