We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c93f30a + a9d52d7 commit f047ee9Copy full SHA for f047ee9
1 file changed
src/components/card/CardSidebar.vue
@@ -423,7 +423,8 @@ export default {
423
}
424
return match
425
})
426
- this.updateDescription(updatedDescription)
+ this.$set(this.copiedCard, 'description', updatedDescription)
427
+ this.$store.dispatch('updateCardDesc', this.copiedCard)
428
429
},
430
updateRelativeTimestamps() {
@@ -446,7 +447,7 @@ export default {
446
447
delete this.copiedCard.descriptionLastEdit
448
this.descriptionSaving = false
449
- updateDescription(text) {
450
+ updateDescription() {
451
this.copiedCard.descriptionLastEdit = Date.now()
452
clearTimeout(this.descriptionSaveTimeout)
453
this.descriptionSaveTimeout = setTimeout(async() => {
0 commit comments