From 16e354e924048e4581f251ee2e50ca09d2885496 Mon Sep 17 00:00:00 2001 From: Alaray Date: Tue, 4 Apr 2023 01:27:01 -0700 Subject: [PATCH] =?UTF-8?q?fix(IPAddress):=20=E4=BF=AE=E5=A4=8DIPAddress?= =?UTF-8?q?=E7=BB=84=E4=BB=B6=E4=BF=AE=E5=A4=8DIPAddress=E7=BB=84=E4=BB=B6?= =?UTF-8?q?=E5=9C=A8=E8=A1=A8=E5=8D=95=E4=B8=AD=E4=B8=8D=E8=83=BDtab?= =?UTF-8?q?=E9=94=AE=E5=88=87=E6=8D=A2=E8=87=B3=E4=B8=8B=E4=B8=80=E4=B8=AA?= =?UTF-8?q?=E8=A1=A8=E5=8D=95=E7=BB=84=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/ip-address/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ip-address/index.js b/src/ip-address/index.js index 79a697a..75036ef 100644 --- a/src/ip-address/index.js +++ b/src/ip-address/index.js @@ -161,7 +161,7 @@ export const keyup = ({ api, props }) => ({ item, index, event }) => { return false } - if ([KEY_CODE.Tab, KEY_CODE.Space, KEY_CODE.NumpadDecimal, KEY_CODE.NumpadComma].indexOf(keyCode) > -1 && value) { + if ([KEY_CODE.Space, KEY_CODE.NumpadDecimal, KEY_CODE.NumpadComma].indexOf(keyCode) > -1 && value) { api.select({ index: nextIndex }) return false }