@lvce-editor/editor-worker 19.32.0 → 19.32.1
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 -1
- package/package.json +1 -1
package/dist/editorWorkerMain.js
CHANGED
|
@@ -14365,7 +14365,7 @@ const editorDiagnosticEffect = {
|
|
|
14365
14365
|
apply(editor) {
|
|
14366
14366
|
return updateDiagnostics(editor);
|
|
14367
14367
|
},
|
|
14368
|
-
isActive: (oldEditor, newEditor) => newEditor.diagnosticsEnabled && oldEditor.lines !== newEditor.lines
|
|
14368
|
+
isActive: (oldEditor, newEditor) => !oldEditor.initial && newEditor.diagnosticsEnabled && oldEditor.lines !== newEditor.lines
|
|
14369
14369
|
};
|
|
14370
14370
|
|
|
14371
14371
|
const queues = {};
|