From eaa0b2c3ac9e2818bccf6b554a36159ec5bb76c1 Mon Sep 17 00:00:00 2001 From: M1kola Date: Tue, 7 Mar 2023 19:00:41 +0300 Subject: [PATCH] fix --- src/components/ProfileCalendar/ProfileCalendarComponent.js | 2 +- src/pages/Tracker/Tracker.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/ProfileCalendar/ProfileCalendarComponent.js b/src/components/ProfileCalendar/ProfileCalendarComponent.js index e895ed6c..8785702b 100644 --- a/src/components/ProfileCalendar/ProfileCalendarComponent.js +++ b/src/components/ProfileCalendar/ProfileCalendarComponent.js @@ -70,7 +70,7 @@ export const ProfileCalendarComponent = React.memo(({value, setValueHandler, rep

Мои отчеты:

- {month} - {totalHours} {hourOfNum(totalHours)} + {month} {totalHours} {hourOfNum(totalHours)}

diff --git a/src/pages/Tracker/Tracker.js b/src/pages/Tracker/Tracker.js index 64aac06f..6e69a150 100644 --- a/src/pages/Tracker/Tracker.js +++ b/src/pages/Tracker/Tracker.js @@ -180,14 +180,14 @@ export const Tracker = () => { {tabTaskMok.map((section, index) => { return
= 3 ? 'tasks__board tasks__board__more' : 'tasks__board'}>
- {section.name} + {section.name}
+ ...
{section.tasks.map((task, index) => { - return
+ return

{task.task}

...