Skip to content

Commit

Permalink
[RadioButton]: make onChange optional (#825)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlanBreck authored Sep 13, 2024
1 parent 6219c2f commit 1106dbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/radioButton/radioButton.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
export let size: Sizes = 'normal'
export let isDisabled = false
export let onChange: (detail: { value: string | number | any }) => void
export let onChange: (detail: { value: string | number | any }) => void = () => {}
const tagName = 'leo-radiobutton'
Expand Down

0 comments on commit 1106dbc

Please sign in to comment.