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