Compare commits

...

2 Commits

3 changed files with 26 additions and 24 deletions

4
package-lock.json generated

@ -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",

@ -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": {

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