Skip to content

Commit

Permalink
Merge branch 'feature/radio-button' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillermo Angeles committed Oct 3, 2023
2 parents dadf063 + 11bf057 commit 2ddf97c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/components/RadioButton/RadioButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ const RadioButton = (props: Props) =>{
return(
<RadioButtonContainer
role={props.id}
style={props.style}
onClick={onClick}
>
<RadioOuterCircle
Expand Down
2 changes: 1 addition & 1 deletion src/components/RadioButton/RadioButtonList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const RadioButtonList = (props: Props) =>{
<RadioButton
id={item.id}
key={item.id+'-'+index}
style={{marginBottom: 16, ...props.cellStyle}}
style={props.cellStyle}
children={item.children}
selected={active}
onClick={() => onClick(item)}
Expand Down

0 comments on commit 2ddf97c

Please sign in to comment.