Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/frontend' into frontend
Browse files Browse the repository at this point in the history
  • Loading branch information
Bendemeurichy committed May 20, 2024
2 parents 6a8a788 + 60eb45d commit 6d1bc6b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ export function SubmissionListItemStudentPage({

return (
<>
<ListItem key={realId} sx={{ maxHeight: '30px' }} disablePadding>
<ListItem key={realId} sx={{ maxHeight: '40px' }} disablePadding>
<ListItemButton
sx={{ maxHeight: '30px' }}
sx={{ maxHeight: '40px' }}
onClick={handleSubmissionClick}
>
<EvenlySpacedRow
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,9 @@ export function SubmissionListItemTeacherPage({

return (
<>
<ListItem id={group_id} sx={{ maxHeight: '30px' }} disablePadding>
<ListItem id={group_id} sx={{ maxHeight: '40px' }} disablePadding>
<ListItemButton
sx={{ maxHeight: '30px' }}
sx={{ maxHeight: '40px' }}
onClick={handleSubmissionClick}
>
<EvenlySpacedRow
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ function UserList(
}
return (
<>
<Divider />
<ListItem>
<EvenlySpacedRow
items={[
Expand Down Expand Up @@ -126,7 +127,7 @@ function UserList(
]}
/>
</ListItem>
<Divider />

</>
)
})}
Expand Down Expand Up @@ -650,10 +651,9 @@ export function AddChangeSubjectPage() {
{t('students')}
</Typography>
</Box>
<Divider />
<Box
sx={{
marginTop: -2.5,
marginTop: -3.1,
}}
>
{UserList(
Expand Down Expand Up @@ -700,10 +700,9 @@ export function AddChangeSubjectPage() {
{t('teachers')}
</Typography>
</Box>
<Divider />
<Box
sx={{
marginTop: -2.5,
marginTop: -3.1,
}}
>
{UserList(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,10 @@ export function AssignmentListItemSubjectsPage({
id={projectName.replace(/\s/g, '')}
key={projectName}
disablePadding
sx={{ maxHeight: '30px' }}
sx={{ maxHeight: '40px' }}
>
<ListItemButton
sx={{ maxHeight: '30px' }}
sx={{ maxHeight: '40px' }}
onClick={handleProjectClick}
>
{isStudent ? (
Expand Down

0 comments on commit 6d1bc6b

Please sign in to comment.