You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After this commit the following error occurs for me at line 148 of parser-input-select.js:
TypeError: $el[0] is undefined
It seems that the updateCheckbox function is run twice and the error happens the second time. Changing line 148 to check for undefined fixes the issue for me:
Replace: if ($el[0].nodeName !== 'INPUT') {
With this: if (typeof $el[0] !== 'undefined' && $el[0].nodeName !== 'INPUT') {
Not sure if this is the best fix or there is another root problem.
Thanks,
lindonb
The text was updated successfully, but these errors were encountered:
After this commit the following error occurs for me at line 148 of
parser-input-select.js
:It seems that the
updateCheckbox
function is run twice and the error happens the second time. Changing line 148 to check for undefined fixes the issue for me:Replace:
if ($el[0].nodeName !== 'INPUT') {
With this:
if (typeof $el[0] !== 'undefined' && $el[0].nodeName !== 'INPUT') {
Not sure if this is the best fix or there is another root problem.
Thanks,
lindonb
The text was updated successfully, but these errors were encountered: