Merge pull request #7174 from nextcloud/backport/7162/stable30

[stable30] fix: do not change focus when card id stays the same
This commit is contained in:
grnd-alt
2025-08-18 11:16:27 +02:00
committed by GitHub

View File

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