[bugfix] AddressList: select event triggered twice

This commit is contained in:
陈嘉涵 2019-06-01 10:29:31 +08:00
parent 9fb8fcae5a
commit 7f4128a067
2 changed files with 2 additions and 2 deletions

View File

@ -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>
) : ( ) : (

View File

@ -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);
}); });