Skip to content

Commit

Permalink
Merge pull request #10 from questionlp/develop
Browse files Browse the repository at this point in the history
Fix Incorrect Route Within panelists.routes.score_breakdown_details()
  • Loading branch information
questionlp authored Aug 24, 2022
2 parents 20f1424 + 1e594a2 commit f30c351
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changes

## 2.1.4

### Bugfix

- Fix an issue where an incorrect route was being referenced in `panelists.routes.score_breakdown_details()`, causing an unhandled error

## 2.1.3

### Component Changes
Expand Down
2 changes: 1 addition & 1 deletion app/panelists/routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def score_breakdown_details(panelist: str):
info = _panelist.retrieve_by_slug(panelist)

if not info:
return redirect_url(url_for("panelists_score_breakdown_index"))
return redirect_url(url_for("panelists.score_breakdown"))

_panelist_scores = PanelistScores(database_connection=database_connection)
scores = _panelist_scores.retrieve_scores_grouped_list_by_slug(panelist)
Expand Down
2 changes: 1 addition & 1 deletion app/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
# graphs.wwdt.me is released under the terms of the Apache License 2.0
"""Errors module for Wait Wait Graphs Site"""

APP_VERSION = "2.1.3"
APP_VERSION = "2.1.4"

0 comments on commit f30c351

Please sign in to comment.