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
There appears an error, when no closest('html') is found
in filterrific.js:133
return input.closest('html').length == 0
it should be:
return input.closest('html') === null || return input.closest('html').length == 0
otherwise the interval is not cleared and u get tons of errors, stacking up on each turbolink.
Uncaught TypeError: Cannot read properties of null (reading 'length')
at removed (filterrific.js?body=1:133:35)
at check (filterrific.js?body=1:117:11)
The text was updated successfully, but these errors were encountered:
There appears an error, when no closest('html') is found
in filterrific.js:133
return input.closest('html').length == 0
it should be:
return input.closest('html') === null || return input.closest('html').length == 0
otherwise the interval is not cleared and u get tons of errors, stacking up on each turbolink.
Uncaught TypeError: Cannot read properties of null (reading 'length')
at removed (filterrific.js?body=1:133:35)
at check (filterrific.js?body=1:117:11)
The text was updated successfully, but these errors were encountered: