We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7f3ff66 + bb8161c commit 93950a9Copy full SHA for 93950a9
atcoder-problems-frontend/src/pages/UserPage/PieChartBlock/index.tsx
@@ -53,7 +53,8 @@ const solvedCountForPieChart = (
53
case "G": {
54
return 6;
55
}
56
- case "H": {
+ case "H":
57
+ case "Ex": {
58
return 7;
59
60
default: {
@@ -185,7 +186,7 @@ const PieCharts: React.FC<PieChartsProps> = ({ problems, title }) => (
185
186
</Row>
187
<Row className="my-3">
188
{problems.map(({ solved, rejected, total }, i) => {
- const key = "ABCDEFGH".charAt(i);
189
+ const key = i <= 6 ? "ABCDEFG".charAt(i) : "H/Ex";
190
return (
191
<Col
192
key={key}
0 commit comments