Skip to content

Commit 77bd0a1

Browse files
committed
ADD course column to repos page
1 parent 748274d commit 77bd0a1

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

web/src/components/core/RepoItem/RepoItem.jsx

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ const RepoItem = ({
2626
subTitle={courseCode}
2727
titleIcon={<GitHubIcon />}
2828
>
29+
<Typography>{courseCode}</Typography>
2930
<Typography>{ready ? 'Ready' : 'Processing'}</Typography>
3031
<Box className={classes.actionsContainer}>
3132
<Button

web/src/pages/core/public/Repos/Repos.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ const Repos = () => {
7474
<DeleteDialog />
7575
<SectionHeader isPage title='Repos' />
7676
<Divider />
77-
<ListHeader sections={['Assignment Name', 'Status', 'Actions']} />
77+
<ListHeader sections={['Assignment Name', 'Course', 'Status', 'Actions']} />
7878
{repos && repos.map((repo, index) => (
7979
<RepoItem
8080
key={`${repo.assignment_name}-${index}`}

0 commit comments

Comments
 (0)