fix: BaseRichText.getData() null safety - Added an early return #279
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.



Fixes the following console error I saw when clicking "Publish" in the editing view.
Might not be a bug but erroneous usage on my end...
Nonethelesse, I would consider catching this scenario an improvement.
ibexa-richtext-onlineeditor-js.js:145040 Uncaught TypeError: Cannot read properties of null (reading 'getData')
at BaseRichText.getData (ibexa-richtext-onlin…tor-js.js:145040:42)
at RichTextValidator.validateInput (ibexa-admin-ui-conte…parts-js.js:9312:42)
at RichTextValidator.validateField (ibexa-admin-ui-conte…parts-js.js:5116:53)
at ibexa-admin-ui-conte…parts-js.js:5190:32
at Array.forEach ()
at RichTextValidator.isValid (ibexa-admin-ui-conte…parts-js.js:5188:31)
at getValidationResults (ibexa-admin-ui-conte…parts-js.js:4668:29)
at Array.map ()
at isFormValid (ibexa-admin-ui-conte…parts-js.js:4726:40)
at HTMLButtonElement.clickHandler (ibexa-admin-ui-conte…-parts-js.js:4710:9)
Somewhat related to ibexa/admin-ui#1807