feat(edit-docs): ignore options change

This commit is contained in:
Elian Doran 2025-03-11 20:40:25 +02:00
parent 4969cf7d5b
commit d3cfc1c88b
No known key found for this signature in database

View File

@ -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();
});