Skip to content

Commit

Permalink
fixes #1594 add label names to assignment filter dropdowns (#1616)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaydonkrooss committed Sep 4, 2024
1 parent a3117b9 commit 036152e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assets/src/components/AssignmentTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ function AssignmentTable (props) {
<Grid container className={classes.filterArea}>
<Grid item xs={12} sm={4}>
<FormControl className={classes.formControl}>
<InputLabel>Filter by Type</InputLabel>
<InputLabel id='assignment-group-checkbox-label'>Filter by Type</InputLabel>
<Select
labelId='assignment-group-checkbox-label'
id='assignment-group-mutiple-checkbox'
Expand Down Expand Up @@ -338,7 +338,7 @@ function AssignmentTable (props) {
</Grid>
<Grid item xs={12} sm={3}>
<FormControl className={classes.formControl}>
<InputLabel>Filter by Status</InputLabel>
<InputLabel id='assignment-status-checkbox-label'>Filter by Status</InputLabel>
<Select
labelId='assignment-status-checkbox-label'
id='assignment-status-mutiple-checkbox'
Expand Down

0 comments on commit 036152e

Please sign in to comment.