@@ -68,7 +68,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h5>Description</h5>
|
<h5>Description</h5>
|
||||||
<VueEasymde ref="markdownEditor" v-model="desc" :configs="mdeConfig" />
|
<VueEasymde ref="markdownEditor" v-model="copiedCard.description" :configs="mdeConfig" />
|
||||||
</AppSidebarTab>
|
</AppSidebarTab>
|
||||||
<AppSidebarTab :order="1" name="Attachments" icon="icon-files-dark">
|
<AppSidebarTab :order="1" name="Attachments" icon="icon-files-dark">
|
||||||
{{ currentCard.attachments }}
|
{{ currentCard.attachments }}
|
||||||
@@ -162,13 +162,11 @@ export default {
|
|||||||
this.copiedCard = JSON.parse(JSON.stringify(this.currentCard))
|
this.copiedCard = JSON.parse(JSON.stringify(this.currentCard))
|
||||||
this.allLabels = this.currentCard.labels
|
this.allLabels = this.currentCard.labels
|
||||||
this.assignedUsers = this.currentCard.assignedUsers.map((item) => item.participant)
|
this.assignedUsers = this.currentCard.assignedUsers.map((item) => item.participant)
|
||||||
this.desc = this.currentCard.description
|
|
||||||
this.updateRelativeTimestamps()
|
this.updateRelativeTimestamps()
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
desc() {
|
'copiedCard.description': function() {
|
||||||
this.copiedCard.description = this.desc
|
|
||||||
this.saveDesc()
|
this.saveDesc()
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user