From d3cfc1c88b11f84b7b113c7d937656305fa99330 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Tue, 11 Mar 2025 20:40:25 +0200 Subject: [PATCH] feat(edit-docs): ignore options change --- electron-docs-main.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/electron-docs-main.ts b/electron-docs-main.ts index 4eb0a2421..7c8145aa1 100644 --- a/electron-docs-main.ts +++ b/electron-docs-main.ts @@ -161,6 +161,10 @@ async function registerHandlers() { exportData(); }, 10_000);; events.subscribe(events.ENTITY_CHANGED, async (e) => { + if (e.entityName === "options") { + return; + } + console.log("Got entity changed ", e); debouncer(); });