Skip to content

Commit

Permalink
Fix radio theme issue
Browse files Browse the repository at this point in the history
  • Loading branch information
hafen committed Aug 19, 2024
1 parent c2b9440 commit d3b09a1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "trelliscopejs-lib",
"version": "0.7.11",
"version": "0.7.12",
"type": "module",
"files": [
"dist"
Expand Down
9 changes: 8 additions & 1 deletion src/components/PanelInputs/PanelInputRadios.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,14 @@ const PanelInputRadios: React.FC<PanelInputRadiosProps> = ({ name, options, pane
classes={{ label: styles.panelInputRadioGroupLabel }}
key={option}
value={option}
control={<Radio classes={{ root: styles.panelInputRadioGroupRadio }} disableRipple size="small" />}
control={
<Radio
classes={{ root: styles.panelInputRadioGroupRadio }}
sx={{ color: theme.palette.primary.main }}
disableRipple
size="small"
/>
}
label={option}
/>
))}
Expand Down

0 comments on commit d3b09a1

Please sign in to comment.