Skip to content

Commit

Permalink
change checkmarks to use primary color instead of secondary:
Browse files Browse the repository at this point in the history
  • Loading branch information
chiaberry committed Dec 3, 2021
1 parent 8f09c36 commit ea4d190
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ const ProjectSummaryProjectPartners = ({
<MenuItem key={entity.entity_id} value={entity.entity_id}>
<Checkbox
checked={selectedEntities.includes(entity.entity_id)}
color={"primary"}
/>
<ListItemText primary={entity.entity_name} />
</MenuItem>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,10 @@ const ProjectSummaryProjectTypes = ({
>
{typeList.map(type => (
<MenuItem key={type.type_id} value={type.type_id}>
<Checkbox checked={selectedTypes.includes(type.type_id)} />
<Checkbox
checked={selectedTypes.includes(type.type_id)}
color={"primary"}
/>
<ListItemText primary={type.type_name} />
</MenuItem>
))}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,10 @@ const SignalProjectTable = () => {
>
{typeList.map(type => (
<MenuItem key={type.type_id} value={type.type_id}>
<Checkbox checked={props.value.includes(type.type_id)} />
<Checkbox
checked={props.value.includes(type.type_id)}
color={"primary"}
/>
<ListItemText primary={type.type_name} />
</MenuItem>
))}
Expand Down

0 comments on commit ea4d190

Please sign in to comment.