RadioGroupOption: active slot prop should have boolean, not integer, value

This commit is contained in:
Ryan Gossiaux
2021-12-30 15:39:55 -10:00
parent e0d64f9bfc
commit 72b0b838e4

View File

@@ -69,7 +69,7 @@
$: slotProps = {
checked,
disabled: isDisabled,
active: state & OptionState.Active,
active: !!(state & OptionState.Active),
};
</script>