We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
There is a bug in this JS Bin; http://jsbin.com/sufate/edit?js,output
An infinite recursion error is caused by line 18.
This is the function:
function removeOnHideTransformer(fields) { return fields.map(function(field) { field.data = field.data || {}; if (field.key && !field.noFormControl && field.hideExpression && !field.data.dontRemoveOnHidden) { addFieldRemoveOnHideWatcher(field); } else if (field.fieldGroup) { field.fieldGroup = removeOnHideTransformer(fields); } return field; }); }
This code
else if (field.fieldGroup) { field.fieldGroup = removeOnHideTransformer(fields); }
Should be
else if (field.fieldGroup) { field.fieldGroup = removeOnHideTransformer(field.fieldGroup); }
The text was updated successfully, but these errors were encountered:
I can create a PR with a new JS Bin Id if required, but It might be easier to just update the existing example.
Sorry, something went wrong.
No branches or pull requests
There is a bug in this JS Bin;
http://jsbin.com/sufate/edit?js,output
An infinite recursion error is caused by line 18.
This is the function:
This code
Should be
The text was updated successfully, but these errors were encountered: