Merge pull request #1901 from nextcloud/bugfix/noid/no-scroll-into-view

This commit is contained in:
Julius Härtl
2020-05-15 12:00:47 +02:00
committed by GitHub

View File

@@ -137,13 +137,6 @@ export default {
return moment(this.card.duedate).format('LLLL')
},
},
watch: {
currentCard(newValue) {
if (newValue) {
this.$nextTick(() => this.$el.scrollIntoView())
}
},
},
methods: {
openCard() {
this.$router.push({ name: 'card', params: { cardId: this.id } }).catch(() => {})