Bug 1913061 - [devtools] Fix crash when no editor and no next selected source r=devtools-reviewers,nchevobbe

Differential Revision: https://phabricator.services.mozilla.com/D220086
This commit is contained in:
Hubert Boma Manilla 2024-08-28 10:33:34 +00:00
Родитель bc586c24dc
Коммит 97d2a8252a
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -141,7 +141,11 @@ class Editor extends PureComponent {
UNSAFE_componentWillReceiveProps(nextProps) {
let { editor } = this.state;
if (!editor && nextProps.selectedSource) {
if (!editor) {
// See Bug 1913061
if (!nextProps.selectedSource) {
return;
}
editor = this.setupEditor();
}