(#23) Убрал кнопку с действиями для студентов

This commit is contained in:
Primakov Alexandr Alexandrovich 2024-04-08 11:00:54 +03:00
parent 4d498662f8
commit d084870c49

View File

@ -376,7 +376,7 @@ const LessonList = () => {
Дата
</Th>
<Th>Название</Th>
<Th>action</Th>
{isTeacher(user) && <Th>action</Th>}
<Th isNumeric>Отмечено</Th>
</Tr>
</Thead>
@ -401,6 +401,7 @@ const LessonList = () => {
{dayjs(lesson.date).format('H:mm DD.MM.YY')}
</Td>
<Td>{lesson.name}</Td>
{isTeacher(user) && (
<Td>
<Menu>
<MenuButton as={Button}>
@ -421,6 +422,7 @@ const LessonList = () => {
</MenuList>
</Menu>
</Td>
)}
<Td isNumeric>{lesson.students.length}</Td>
</Tr>
))}