fix(number-keyboard): fix hide-on-click-outside prop not working (#7668)

fix #7667

Co-authored-by: 严畅 <yanchang@segimail.com>
This commit is contained in:
严畅 2020-12-01 16:42:43 +08:00 committed by GitHub
parent bf6e0beb02
commit 63b354e0f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -223,7 +223,9 @@ export default createComponent({
}
);
useClickAway(root, onClose, { eventName: 'touchstart' });
if (props.hideOnClickOutside) {
useClickAway(root, onClose, { eventName: 'touchstart' });
}
return () => {
const Title = renderTitle();