Skip to content

Commit

Permalink
Merge pull request #598 from camptocamp/workflow-fix
Browse files Browse the repository at this point in the history
Workflow: Fix dashboard
  • Loading branch information
sbrunner authored Nov 5, 2024
2 parents 7581149 + 6b7d24d commit 1873716
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion github_app_geo_project/module/workflow/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,5 +152,5 @@ def get_transversal_dashboard(

return module.TransversalDashboardOutput(
renderer="github_app_geo_project:module/workflow/dashboard.html",
data={"repositories": context.status.keys()},
data={"status": context.status},
)
2 changes: 1 addition & 1 deletion github_app_geo_project/module/workflow/dashboard.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%for repository, data_json in repositories.items():
%for repository, data_json in status.items():
<h2><a href="?repository=${repository}">${repository}</a></h2>
%for branch_name, branch_values in data_json.items():
<!---->
Expand Down

0 comments on commit 1873716

Please sign in to comment.