Skip to content

Commit

Permalink
Add "withdrawn" to list of inactive statuses
Browse files Browse the repository at this point in the history
This affected different calculating pages, like the open round
percentage completions.

Issue #3296
  • Loading branch information
frankduncan authored and frjo committed Oct 9, 2024
1 parent a560bd2 commit 0aaa2cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hypha/apply/funds/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -1212,7 +1212,7 @@ def get_stage_change_actions():
active_statuses = [
status
for status, _ in PHASES
if "accepted" not in status and "rejected" not in status and "invited" not in status
if "accepted" not in status and "rejected" not in status and "invited" not in status and "withdrawn" not in status
]


Expand Down

0 comments on commit 0aaa2cc

Please sign in to comment.