From 956fdec7f5d3075e39ed7aae79a171cc645006b5 Mon Sep 17 00:00:00 2001 From: Primakov Alexandr Alexandrovich Date: Thu, 12 Dec 2024 12:12:19 +0300 Subject: [PATCH] unknown name if no name --- 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 4996c71..d7a936c 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 || student.value || 'Имя не определено'} ))}