Skip to content

Commit e505b4e

Browse files
KatrinKhilkolane-formio
authored andcommitted
FIO-8597: fixed an issue with an empty array value for a number component with multiple values enabled
1 parent e994382 commit e505b4e

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

src/process/validation/rules/__tests__/validateNumber.test.ts

+13
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,16 @@ it('Validating a multiple number with a blank value will return null', async ()
3939
const result = await validateMultiple(context);
4040
expect(result).to.equal(null);
4141
});
42+
43+
it('Validating a multiple number with an empty array value will return null', async () => {
44+
const component = {
45+
...simpleNumberField,
46+
multiple: true
47+
};
48+
const data = {
49+
component: [],
50+
};
51+
const context = generateProcessorContext(component, data);
52+
const result = await validateMultiple(context);
53+
expect(result).to.equal(null);
54+
});

src/process/validation/rules/validateNumber.ts

+3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ export const shouldValidate = (context: ValidationContext) => {
1111
if (!value) {
1212
return false;
1313
}
14+
if (component.multiple && Array.isArray(value) && value.length === 0) {
15+
return false;
16+
}
1417
if (!isValidatableNumberComponent(component)) {
1518
return false;
1619
}

0 commit comments

Comments
 (0)