Compare commits

...

2 Commits

Author SHA1 Message Date
91ea7fddaf 2.2.1
All checks were successful
platform/bro/pipeline/head This commit looks good
2024-04-08 11:01:02 +03:00
d084870c49 (#23) Убрал кнопку с действиями для студентов 2024-04-08 11:00:54 +03:00
3 changed files with 26 additions and 24 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "journal.pl",
"version": "2.2.0",
"version": "2.2.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "journal.pl",
"version": "2.2.0",
"version": "2.2.1",
"license": "MIT",
"dependencies": {
"@chakra-ui/icons": "^2.1.1",

View File

@ -1,6 +1,6 @@
{
"name": "journal.pl",
"version": "2.2.0",
"version": "2.2.1",
"description": "inno-js platform journal ui repo",
"main": "./src/index.tsx",
"scripts": {

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>
))}