File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
chartlets.js/packages/lib/src/plugins/mui Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import MuiFormControlLabel from "@mui/material/FormControlLabel";
66import MuiFormLabel from "@mui/material/FormLabel" ;
77import { Tooltip } from "./Tooltip" ;
88
9- import type { ComponentState , ComponentProps } from "@/index" ;
9+ import type { ComponentProps , ComponentState } from "@/index" ;
1010
1111interface RadioState extends ComponentState {
1212 type : "Radio" ;
@@ -54,13 +54,14 @@ export function RadioGroup({
5454 } ;
5555 return (
5656 < Tooltip title = { tooltip } >
57- < MuiFormControl style = { style } disabled = { disabled } >
57+ < MuiFormControl disabled = { disabled } >
5858 < MuiFormLabel > { label } </ MuiFormLabel >
5959 < MuiRadioGroup
6060 id = { id }
6161 name = { name }
6262 row = { row }
6363 value = { value }
64+ style = { style }
6465 onChange = { handleChange }
6566 >
6667 { radioButtons &&
You can’t perform that action at this time.
0 commit comments