From 0bce7f0ea9d5521d05acc4f4acfb51d1355dd8aa 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 e966cbff6..411f7a507 100644 --- a/src/components/card/CardSidebar.vue +++ b/src/components/card/CardSidebar.vue @@ -170,7 +170,8 @@ export default { }, }, watch: { - currentCard() { + currentCard(newCard, oldCard) { + if (newCard.id === oldCard.id) return this.focusHeader() }, 'currentCard.title': {