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
Turns out the value of mirror is not always of type Element | null.
mirror
Element | null
Replace:
const mirror = ( sortable as unknown as { readonly mirror: Element | null } ).mirror; if (mirror !== null) mirror.parentNode?.removeChild(mirror);
with:
const mirror = ( sortable as unknown as { readonly mirror?: Element | null } ).mirror; mirror?.parentNode?.removeChild(mirror);
The text was updated successfully, but these errors were encountered:
It appears there was a typo in this issue's title. Is it supposed to be 'Console error when exiting query builder'?
Sorry, something went wrong.
Fix console error when exiting query builder
2445d7a
Fixes #3523
This issue has been mentioned on Specify Community Forum. There might be relevant details there:
https://discourse.specifysoftware.org/t/specify-7-8-12-release-announcement/1202/1
CarolineDenis
Successfully merging a pull request may close this issue.
Hint
Turns out the value of
mirror
is not always of typeElement | null
.Solution
Replace:
with:
The text was updated successfully, but these errors were encountered: