|
@@ -743,7 +743,7 @@ export default {
|
|
|
this.appClientList = res.data.appClient // 客户端
|
|
|
this.getVersionList(this.bug.appId)
|
|
|
})
|
|
|
- this.editor.txt.html(this.bugDescribe)
|
|
|
+ this.editor.txt.html(this.bugDescribe === null ? '' : this.bugDescribe)
|
|
|
})
|
|
|
this.getCommentList()
|
|
|
},
|
|
@@ -858,7 +858,7 @@ export default {
|
|
|
this.describeEditorVisible = false
|
|
|
}
|
|
|
this.editor.create()
|
|
|
- this.editor.txt.html(this.bugDescribe)
|
|
|
+ this.editor.txt.html(this.bugDescribe === null ? '' : this.bugDescribe)
|
|
|
},
|
|
|
describeCancel() {
|
|
|
this.bugDescribe = this.bug.bugDescribe
|