From 4bf4b078194abb5b905d5635a3e0bc12f4d3a7da Mon Sep 17 00:00:00 2001 From: Rafael Ugolini Date: Wed, 5 Jul 2023 23:02:02 +0200 Subject: [PATCH 1/2] feat: add app.json (#393) --- app.json | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 app.json diff --git a/app.json b/app.json new file mode 100644 index 00000000..bb78c2c6 --- /dev/null +++ b/app.json @@ -0,0 +1,7 @@ +{ + "buildpacks": [ + { + "url": "heroku/nodejs" + } + ] + } \ No newline at end of file From f79680485f44e26c7017b3794775a5245d239e7d Mon Sep 17 00:00:00 2001 From: Scott Mitchell Date: Wed, 5 Jul 2023 17:02:10 -0400 Subject: [PATCH 2/2] Fix success badge color (#394) --- client/components/proposal/StateTag.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/client/components/proposal/StateTag.tsx b/client/components/proposal/StateTag.tsx index 36a9f09a..cfcb34f7 100644 --- a/client/components/proposal/StateTag.tsx +++ b/client/components/proposal/StateTag.tsx @@ -24,7 +24,9 @@ export const StateTag = ({ state }: { state: number }) => { {state == 1 && Active} {state == 2 && Cancelled} {state == 3 && Defeated} - {state == 4 && Succeeded} + {state == 4 && ( + Succeeded + )} {state == 5 && Queued} {state == 6 && Expired} {state == 7 && (