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}

...