diff --git a/src/pages/attendance/attendance.tsx b/src/pages/attendance/attendance.tsx index d7a936c..1ca5f91 100644 --- a/src/pages/attendance/attendance.tsx +++ b/src/pages/attendance/attendance.tsx @@ -62,7 +62,7 @@ export const Attendance = () => { Дата Название занятия {data.students.map((student) => ( - {student.name || student.value || 'Имя не определено'} + {student.name || JSON.stringify(student.value) || 'Имя не определено'} ))}