Skip to content

Commit

Permalink
Merge branch 'master' into staging
Browse files Browse the repository at this point in the history
  • Loading branch information
micahalcorn committed Jul 5, 2023
2 parents cc77b64 + f796804 commit 4524b13
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
7 changes: 7 additions & 0 deletions app.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"buildpacks": [
{
"url": "heroku/nodejs"
}
]
}
4 changes: 3 additions & 1 deletion client/components/proposal/StateTag.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ export const StateTag = ({ state }: { state: number }) => {
{state == 1 && <StateBadge className="badge-warning">Active</StateBadge>}
{state == 2 && <StateBadge className="badge-error">Cancelled</StateBadge>}
{state == 3 && <StateBadge className="badge-error">Defeated</StateBadge>}
{state == 4 && <StateBadge className="badge-error">Succeeded</StateBadge>}
{state == 4 && (
<StateBadge className="badge-success">Succeeded</StateBadge>
)}
{state == 5 && <StateBadge className="badge-success">Queued</StateBadge>}
{state == 6 && <StateBadge className="badge-success">Expired</StateBadge>}
{state == 7 && (
Expand Down

0 comments on commit 4524b13

Please sign in to comment.