Fix save event registrations.

This commit is contained in:
Paulo Gustavo Veiga 2022-11-23 07:49:56 -08:00
parent 4a4d67c554
commit 4ca3d03b90

View File

@ -92,7 +92,7 @@ class Editor {
// Autosave on a fixed period of time ...
setInterval(() => {
this.component.save(false);
}, 10000);
}, 5000);
}
}
}