diff --git a/src/components/card/CardSidebar.vue b/src/components/card/CardSidebar.vue
index 0af573168..f6022d406 100644
--- a/src/components/card/CardSidebar.vue
+++ b/src/components/card/CardSidebar.vue
@@ -68,7 +68,7 @@
Description
-
+
{{ currentCard.attachments }}
@@ -162,13 +162,11 @@ export default {
this.copiedCard = JSON.parse(JSON.stringify(this.currentCard))
this.allLabels = this.currentCard.labels
this.assignedUsers = this.currentCard.assignedUsers.map((item) => item.participant)
- this.desc = this.currentCard.description
this.updateRelativeTimestamps()
}
},
- desc() {
- this.copiedCard.description = this.desc
+ 'copiedCard.description': function() {
this.saveDesc()
}
},