Merge pull request #7162 from nextcloud/fix/6528-loosing-focus-when-editing-the-description-in-a-card

fix: do not change focus when card id stays the same
This commit is contained in:
Luka Trovic
2025-08-14 20:52:50 +02:00
committed by GitHub

View File

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