fix: do not change focus when card id stays the same

Signed-off-by: grnd-alt <github@belakkaf.net>
This commit is contained in:
grnd-alt
2025-08-13 12:55:22 +02:00
committed by backportbot[bot]
parent 8bed62debc
commit 0bce7f0ea9

View File

@@ -170,7 +170,8 @@ export default {
}, },
}, },
watch: { watch: {
currentCard() { currentCard(newCard, oldCard) {
if (newCard.id === oldCard.id) return
this.focusHeader() this.focusHeader()
}, },
'currentCard.title': { 'currentCard.title': {