Merge pull request #3090 from nextcloud/bugfix/noid/load-attachments

[stable1.2] Always fetch attachments
This commit is contained in:
Christoph Wurst
2021-06-07 13:14:26 +02:00
committed by GitHub

View File

@@ -151,8 +151,13 @@ export default {
}
},
},
created() {
this.$store.dispatch('fetchAttachments', this.cardId)
watch: {
cardId: {
immediate: true,
handler() {
this.$store.dispatch('fetchAttachments', this.cardId)
},
},
},
methods: {
handleUploadFile(event) {