From 03528362a483dfdbff9977857320f73fcae6d8f7 Mon Sep 17 00:00:00 2001 From: grnd-alt Date: Wed, 13 Aug 2025 12:55:22 +0200 Subject: [PATCH] fix: do not change focus when card id stays the same Signed-off-by: grnd-alt --- src/components/card/CardSidebar.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/card/CardSidebar.vue b/src/components/card/CardSidebar.vue index 4e4dd6820..cb6b37bab 100644 --- a/src/components/card/CardSidebar.vue +++ b/src/components/card/CardSidebar.vue @@ -156,7 +156,8 @@ export default { }, }, watch: { - currentCard() { + currentCard(newCard, oldCard) { + if (newCard.id === oldCard.id) return this.focusHeader() }, },