fix: Null check added when resolving event's priority #31044
+11
−1
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
I wanted to migrate from React 17 to React 18 and experienced issues with rendering when using new root API.
When
window.event
isnull
,Uncaught TypeError: Cannot read properties of null (reading 'type')
error can be thrown when calling render function.✅ Example with React 17 where nothing breaks and component is rendered correctly:
https://jsfiddle.net/9zg3t4mc/1/
❌ Example with React 18 where error is thrown and component is not rendered:
https://jsfiddle.net/92wtjb0g/
How did you test this change?
I run
yarn build
and then useReact-prod.js
inside fiddle that is throwing an error and with this change render is working now.