v upd, fix bug #10

This commit is contained in:
Grol Grol 2025-04-12 10:55:26 +03:00
parent e044691186
commit 03ee45cc1c
2 changed files with 2 additions and 1 deletions

View file

@ -1,7 +1,7 @@
{
"id": "checkbox-sync",
"name": "Checkbox Sync",
"version": "1.0.9",
"version": "1.0.10",
"minAppVersion": "0.12.0",
"description": "Automatically checks the parent checkbox if all child checkboxes are completed, and unchecks it otherwise.",
"author": "Grol",

View file

@ -31,6 +31,7 @@ export default class SyncController {
let newText = this.checkboxUtils.syncText(text, textBefore);
if (newText === text) {
this.fileStateHolder.set(file, newText);
console.log(`sync editor "${file.basename}" stop. new text equals old text.`);
return;
}