Skip to content

Commit

Permalink
Merge pull request #338 from hubmapconsortium/Fix-spelling-for-blood-…
Browse files Browse the repository at this point in the history
…vasculature

Fix spelling for blood vasculature in mkdocs
  • Loading branch information
aleixpuigb authored Dec 10, 2024
2 parents d62d6f6 + 141b185 commit b5838c6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ nav:
- General report: Blood/README.md
- ASCT+B as Graph: Blood/graph.md
- Report changes: Blood/comments.md
- Blood Vascularure:
- Blood Vasculature:
- General report: Blood_vasculature/README.md
- ASCT+B as Graph: Blood_vasculature/graph.md
- Report changes: Blood_vasculature/comments.md
Expand Down
3 changes: 2 additions & 1 deletion src/readme_reports_generation.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,8 @@ def compact_issues(items: list, element: str):
compacted_items[key]["rows"] = [item["row_number"]]
compacted_items[key].pop("row_number")
else:
compacted_items[key]["rows"].append(item["row_number"])
if item["row_number"] not in compacted_items[key]["rows"]:
compacted_items[key]["rows"].append(item["row_number"])

return list(compacted_items.values())

Expand Down

0 comments on commit b5838c6

Please sign in to comment.