fix(Field): should not adjust value when the min or max props are not set (#13150)

This commit is contained in:
inottn 2024-10-13 16:00:58 +08:00 committed by GitHub
parent 9fea6a2927
commit 1388dd939a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 3 deletions

View File

@ -334,7 +334,11 @@ export default defineComponent({
const isNumber = props.type === 'number';
value = formatNumber(value, isNumber, isNumber);
if (trigger === 'onBlur' && value !== '') {
if (
trigger === 'onBlur' &&
value !== '' &&
(props.min !== undefined || props.max !== undefined)
) {
const adjustedValue = clamp(
+value,
props.min ?? -Infinity,

View File

@ -59,9 +59,9 @@ test('should format input value when type is number', () => {
const input = wrapper.find('input');
input.element.value = '1';
input.element.value = '01';
input.trigger('input');
expect(wrapper.emitted('update:modelValue')[0][0]).toEqual('1');
expect(wrapper.emitted('update:modelValue')[0][0]).toEqual('01');
input.element.value = '1.2.';
input.trigger('input');