Compare commits

...

2 Commits

Author SHA1 Message Date
Primakov Alexandr Alexandrovich
e56f0e4e5d 3.5.0 2024-11-06 12:52:36 +03:00
Primakov Alexandr Alexandrovich
5c13ca1cac no width limit in attendance 2024-11-06 12:52:29 +03:00
3 changed files with 5 additions and 6 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "journal.pl",
"version": "3.4.1",
"version": "3.5.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "journal.pl",
"version": "3.4.1",
"version": "3.5.0",
"license": "MIT",
"dependencies": {
"@brojs/cli": "^0.0.4-beta.0",

View File

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

View File

@ -50,7 +50,7 @@ export const Attendance = () => {
}
return (
<Container maxW="container.xl">
<Box>
<Box mt={12} mb={12}>
<Heading>{courseInfo.name}</Heading>
</Box>
@ -83,7 +83,6 @@ export const Attendance = () => {
</tbody>
</table>
</Box>
{/* <pre>{JSON.stringify(attendance, null, 2)}</pre> */}
</Container>
</Box>
)
}