RadioGroupOption: active slot prop should have boolean, not integer, value
This commit is contained in:
@@ -69,7 +69,7 @@
|
|||||||
$: slotProps = {
|
$: slotProps = {
|
||||||
checked,
|
checked,
|
||||||
disabled: isDisabled,
|
disabled: isDisabled,
|
||||||
active: state & OptionState.Active,
|
active: !!(state & OptionState.Active),
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user