mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
[bugfix] AddressList: select event triggered twice
This commit is contained in:
parent
9fb8fcae5a
commit
7f4128a067
@ -61,7 +61,7 @@ function AddressItem(
|
|||||||
];
|
];
|
||||||
|
|
||||||
return switchable && !disabled ? (
|
return switchable && !disabled ? (
|
||||||
<Radio name={data.id} onClick={onSelect}>
|
<Radio name={data.id}>
|
||||||
{Info}
|
{Info}
|
||||||
</Radio>
|
</Radio>
|
||||||
) : (
|
) : (
|
||||||
|
@ -42,5 +42,5 @@ test('select event', () => {
|
|||||||
|
|
||||||
wrapper.find('.van-radio__icon').trigger('click');
|
wrapper.find('.van-radio__icon').trigger('click');
|
||||||
|
|
||||||
expect(onSelect).toHaveBeenCalled();
|
expect(onSelect).toHaveBeenCalledTimes(1);
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user