From 3c4804b6d45bff4d6a4987e23081dbdd82e119c4 Mon Sep 17 00:00:00 2001 From: kolaente Date: Tue, 3 Mar 2026 23:46:37 +0100 Subject: [PATCH] fix(frontend): use rAF retry loop to focus quick entry input The previous approach using nextTick and window focus events didn't work because the Modal transition (v-if + Transition appear) and the Electron window visibility timing both prevent immediate focus. Use requestAnimationFrame to retry until focus actually lands on the input. --- .../components/quick-actions/QuickActions.vue | 26 +++++++++---------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/frontend/src/components/quick-actions/QuickActions.vue b/frontend/src/components/quick-actions/QuickActions.vue index 19f80f752..fc8f4727b 100644 --- a/frontend/src/components/quick-actions/QuickActions.vue +++ b/frontend/src/components/quick-actions/QuickActions.vue @@ -100,7 +100,7 @@