From 7cb41cd61bab935bc859f239bdc9993e856f8568 Mon Sep 17 00:00:00 2001 From: Elizabeth Danzberger Date: Fri, 28 Mar 2025 01:54:26 +0100 Subject: [PATCH] fix: auto-focus board name input field Signed-off-by: Elizabeth Danzberger --- src/components/navigation/AppNavigationBoard.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/navigation/AppNavigationBoard.vue b/src/components/navigation/AppNavigationBoard.vue index 47282e1e2..c1a6103c0 100644 --- a/src/components/navigation/AppNavigationBoard.vue +++ b/src/components/navigation/AppNavigationBoard.vue @@ -269,6 +269,8 @@ export default { this.editTitle = this.board.title this.editColor = '#' + this.board.color this.editing = true + + this.$nextTick(() => this.$refs.inputField?.focus()) }, async actionClone() { this.loading = true