Skip to content

Commit

Permalink
[fix](@svelteui/core): fix RadioGroup label type issue and make defau…
Browse files Browse the repository at this point in the history
…lt label value as undefined for InputWrapper
  • Loading branch information
BeeMargarida committed Jul 7, 2024
1 parent b5f9605 commit 3abcbfd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
element: $$Props['element'] = undefined,
className: $$Props['className'] = '',
override: $$Props['override'] = {},
label: $$Props['label'] = 'label',
label: $$Props['label'] = undefined,
description: $$Props['description'] = null,
error: $$Props['error'] = null,
required: $$Props['required'] = false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
group: $$Props['group'] = undefined,
color: $$Props['color'] = undefined,
value: $$Props['value'] = undefined,
label: $$Props['label'] = null,
label: $$Props['label'] = undefined,
disabled: $$Props['disabled'] = false,
size: $$Props['size'] = undefined,
radius: $$Props['radius'] = undefined,
Expand Down

0 comments on commit 3abcbfd

Please sign in to comment.