From cc3f9cd8a4b3e31a66bfa0f221285604e8960139 Mon Sep 17 00:00:00 2001 From: vishwajeet Date: Wed, 27 Aug 2025 17:43:09 +0530 Subject: [PATCH] fix(ui): correct mislabeled subtitle in statistics --- frontend/src/pages/Statistics.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/pages/Statistics.vue b/frontend/src/pages/Statistics.vue index 74949515..db86f441 100644 --- a/frontend/src/pages/Statistics.vue +++ b/frontend/src/pages/Statistics.vue @@ -54,7 +54,7 @@ :config="{ data: signupsChart.data, title: 'Signups', - subtitle: 'Signups per month', + subtitle: 'Signups per day', xAxis: { key: 'date', type: 'time', @@ -74,7 +74,7 @@ :config="{ data: enrollmentChart.data, title: 'Enrollments', - subtitle: 'Enrollments per month', + subtitle: 'Enrollments per day', xAxis: { key: 'date', type: 'time', @@ -96,7 +96,7 @@ :config="{ data: certification.data, title: 'Certifications', - subtitle: 'Certifications per month', + subtitle: 'Certifications per day', xAxis: { key: 'date', type: 'time',