We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac5366e commit b685d64Copy full SHA for b685d64
src/formBuilder/utils.js
@@ -322,9 +322,9 @@ export function checkForUnsupportedFeatures(
322
Object.keys(allFormInputs).forEach((inputType) => {
323
allFormInputs[inputType].matchIf.forEach((match) => {
324
if (match.widget && !widgets.includes(match.widget))
325
- widgets.push(match.widget);
+ widgets.push(match.widget || ''); // || '' is redundant but here to appease flow
326
if (match.field && !fields.includes(match.field))
327
- fields.push(match.field);
+ fields.push(match.field || ''); // || '' is redundant but here to appease flow
328
});
329
if (
330
allFormInputs[inputType].possibleOptions &&
0 commit comments