diff --git a/src/components/RightSidebar/Description/Description.vue b/src/components/RightSidebar/Description/Description.vue index 400add17191..709833a5523 100644 --- a/src/components/RightSidebar/Description/Description.vue +++ b/src/components/RightSidebar/Description/Description.vue @@ -166,7 +166,7 @@ export default { data() { return { - descriptionText: '', + descriptionText: this.description, forceReRenderKey: 0, expanded: false, overflows: null, @@ -209,8 +209,8 @@ export default { watch: { // Each time the prop changes, reflect the changes in the value stored in this component - description() { - this.descriptionText = this.description + description(newValue) { + this.descriptionText = newValue if (!this.editing) { this.checkOverflow() }