From: Scott Worley Date: Thu, 27 Jan 2022 20:26:23 +0000 (-0800) Subject: Fix: Escape aborts tagging X-Git-Url: http://git.scottworley.com/vopamoi/commitdiff_plain/187164d50f67ca24cf7769c2d1746caae51f72b7 Fix: Escape aborts tagging --- diff --git a/vopamoi.ts b/vopamoi.ts index 6e511a5..d0f4fa1 100644 --- a/vopamoi.ts +++ b/vopamoi.ts @@ -284,7 +284,7 @@ function BrowserUI() { input.removeEventListener("blur", this.completeTagEdit); task.removeChild(input); task.focus(); - if (newTagName && !Model.hasTag(task, newTagName)) { + if (resolution === CommitOrAbort.Commit && newTagName && !Model.hasTag(task, newTagName)) { ui.addTag(task.getAttribute("data-created")!, newTagName); lastTagNameEntered = newTagName; }