@lvce-editor/editor-worker 19.30.4 → 19.30.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/editorWorkerMain.js +1 -2
- package/package.json +1 -1
package/dist/editorWorkerMain.js
CHANGED
|
@@ -13894,8 +13894,7 @@ const editorDiagnosticEffect = {
|
|
|
13894
13894
|
apply(editor) {
|
|
13895
13895
|
return updateDiagnostics(editor);
|
|
13896
13896
|
},
|
|
13897
|
-
|
|
13898
|
-
isActive: (oldEditor, newEditor) => newEditor.diagnosticsEnabled && JSON.stringify(oldEditor.lines) !== JSON.stringify(newEditor.lines)
|
|
13897
|
+
isActive: (oldEditor, newEditor) => newEditor.diagnosticsEnabled && oldEditor.lines !== newEditor.lines
|
|
13899
13898
|
};
|
|
13900
13899
|
|
|
13901
13900
|
const queues = {};
|