diff --git a/ftl/core/statistics.ftl b/ftl/core/statistics.ftl
index ad445f437..1f4623066 100644
--- a/ftl/core/statistics.ftl
+++ b/ftl/core/statistics.ftl
@@ -149,6 +149,10 @@ statistics-intervals-day-single =
# hour range, eg "From 14:00-15:00"
statistics-hours-range = From { $hourStart }:00~{ $hourEnd }:00
statistics-hours-correct = { $correct }/{ $total } correct ({ $percent }%)
+# the emoji depicts the graph displaying this number
+statistics-hours-reviews = 📊 { $reviews } reviews
+# the emoji depicts the graph displaying this number
+statistics-hours-correct-reviews = 📈 { $percent }% correct ({ $reviews })
statistics-hours-title = Hourly Breakdown
statistics-hours-subtitle = Review success rate for each hour of the day.
# shown when graph is empty
diff --git a/ts/graphs/hours.ts b/ts/graphs/hours.ts
index 972b18008..2da461a7c 100644
--- a/ts/graphs/hours.ts
+++ b/ts/graphs/hours.ts
@@ -170,12 +170,12 @@ export function renderHours(
hourStart: d.hour,
hourEnd: d.hour + 1,
});
- const correct = tr.statisticsHoursCorrect({
- correct: d.correctCount,
- total: d.totalCount,
+ const reviews = tr.statisticsHoursReviews({ reviews: d.totalCount });
+ const correct = tr.statisticsHoursCorrectReviews({
percent: d.totalCount ? (d.correctCount / d.totalCount) * 100 : 0,
+ reviews: d.correctCount,
});
- return `${hour}
${correct}`;
+ return `${hour}
${reviews}
${correct}`;
}
// hover/tooltip