Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(inputNumber): 修复小数点后存在非0数字后无法再输入0的问题 #2236

Merged
merged 1 commit into from
Mar 15, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/input-number/useInputNumber.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ export default function useInputNumber(props: TdInputNumberProps, context: Setup
}
// specialCode 新增或删除这些字符时不触发 change 事件
const isDelete = e.inputType === 'deleteContentBackward';
const inputSpecialCode = specialCode.includes(val.slice(-1)) || /\.0+$/.test(val);
const inputSpecialCode = specialCode.includes(val.slice(-1)) || /\.\d*0+$/.test(val);
const deleteSpecialCode = isDelete && specialCode.includes(String(userInput.value).slice(-1));
if ((!isNaN(Number(val)) && !inputSpecialCode) || deleteSpecialCode) {
const newVal = val === '' ? undefined : Number(val);
Expand Down