From 001ecc567e1b1c2c5bc5568d16b75e9fe7bd7fb6 Mon Sep 17 00:00:00 2001 From: Yehor Podporinov <50983498+yehor-podporinov@users.noreply.github.com> Date: Fri, 3 May 2024 18:16:32 +0300 Subject: [PATCH] Fix/Chart (#44) Co-authored-by: Yehor Podporinov --- src/common/InfoDashboard/index.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/common/InfoDashboard/index.vue b/src/common/InfoDashboard/index.vue index 9475bb15..ca4f03f5 100644 --- a/src/common/InfoDashboard/index.vue +++ b/src/common/InfoDashboard/index.vue @@ -115,6 +115,10 @@ const monthOptions: FieldOption[] = [ title: t('months.april'), value: 4, }, + { + title: t('months.may'), + value: 5, + }, ] const selectedMonth = ref(monthOptions[monthOptions.length - 1])