You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The admin hackathon show page contains buttons to transition the state of a hackathon submission (Approve, Reject, and Hold for Review). It's a bit confusing because all the buttons appear at once (similar to #401)
We should hide certain buttons depending on the current state. For example, approve -> approve should not be a valid state transition; thus, we should hide the approve button if the current state is approved.
---
title: Hackathon Submission State Diagram
---
stateDiagram-v2
[*] --> Pending
Pending --> Approved
Pending --> Rejected
Approved --> Pending: Hold for Review
Rejected --> Pending: Hold for Review
Loading
The text was updated successfully, but these errors were encountered:
The admin hackathon show page contains buttons to transition the state of a hackathon submission (Approve, Reject, and Hold for Review). It's a bit confusing because all the buttons appear at once (similar to #401)
We should hide certain buttons depending on the current state. For example,
approve
->approve
should not be a valid state transition; thus, we should hide theapprove
button if the current state is approved.The text was updated successfully, but these errors were encountered: