Skip to content

Commit 5ca5c3b

Browse files
authored
Merge pull request #2088 from kleros/chore/label-text-improvements
chore: label text improvements
2 parents 257870c + 4a451a5 commit 5ca5c3b

File tree

1 file changed

+6
-6
lines changed
  • web/src/components/DisputeView/CardLabels

1 file changed

+6
-6
lines changed

web/src/components/DisputeView/CardLabels/index.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,13 @@ interface ICardLabels {
6161
}
6262

6363
const LabelArgs: Record<string, { text: string; icon: React.FC<React.SVGAttributes<SVGElement>>; color: IColors }> = {
64-
EvidenceTime: { text: "Evidence Time", icon: EvidenceIcon, color: "blue" },
65-
NotDrawn: { text: "Not Drawn", icon: NotDrawnIcon, color: "grey" },
66-
CanVote: { text: "Time to vote", icon: CanVoteIcon, color: "blue" },
67-
Voted: { text: "I voted", icon: VotedIcon, color: "purple" },
68-
DidNotVote: { text: "Didn't cast a vote", icon: ForgotToVoteIcon, color: "purple" },
64+
EvidenceTime: { text: "Evidence time", icon: EvidenceIcon, color: "blue" },
65+
NotDrawn: { text: "You were not drawn", icon: NotDrawnIcon, color: "grey" },
66+
CanVote: { text: "You can vote now", icon: CanVoteIcon, color: "blue" },
67+
Voted: { text: "You voted", icon: VotedIcon, color: "purple" },
68+
DidNotVote: { text: "You did not vote", icon: ForgotToVoteIcon, color: "purple" },
6969
CanFund: { text: "Appeal possible", icon: AppealIcon, color: "lightPurple" },
70-
Funded: { text: "I funded", icon: FundedIcon, color: "lightPurple" },
70+
Funded: { text: "You funded an appeal", icon: FundedIcon, color: "lightPurple" },
7171
};
7272

7373
const getFundingRewards = (contributions: ClassicContribution[], closed: boolean) => {

0 commit comments

Comments
 (0)