From 9272b060bf98118e37f19a8c0834034691bfe6a2 Mon Sep 17 00:00:00 2001 From: Caleb Allen Date: Fri, 13 Mar 2026 09:24:32 -0400 Subject: [PATCH] fix(12-02): dismiss inline rename on click outside --- frontend/src/components/config-page/config-page.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/frontend/src/components/config-page/config-page.ts b/frontend/src/components/config-page/config-page.ts index 1de91ed..5aa7652 100644 --- a/frontend/src/components/config-page/config-page.ts +++ b/frontend/src/components/config-page/config-page.ts @@ -1385,6 +1385,11 @@ export class ConfigPage extends LitElement { if (this.activeMenuId !== null) { this.activeMenuId = null; } + + if (this.editingLibraryId !== null) { + this.editingLibraryId = null; + this.editingName = ''; + } }; private showToast(message: string): void {