From 985b8ef315cae7550097c271949c0c82831a2258 Mon Sep 17 00:00:00 2001 From: Primakov Alexandr Alexandrovich Date: Thu, 12 Dec 2024 12:30:56 +0300 Subject: [PATCH] stringify --- src/pages/attendance/attendance.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) || 'Имя не определено'} ))}