Merge pull request #7173 from nextcloud/backport/7162/stable31

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

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': {