diff --git a/frontend/src/components/CodeDiffEditor.vue b/frontend/src/components/CodeDiffEditor.vue index 33452c073..4424b4ec2 100644 --- a/frontend/src/components/CodeDiffEditor.vue +++ b/frontend/src/components/CodeDiffEditor.vue @@ -33,8 +33,8 @@ export default { console.debug("Code diff editor: content change"); if (this.editor) { this.editor.setModel({ - original: monaco.editor.createModel(this.content, this.language), - modified: monaco.editor.createModel(this.diffContent, this.language) + original: monaco.editor.createModel(this.content.respData, this.language), + modified: monaco.editor.createModel(this.diffContent.content, this.language) }); } diff --git a/lyrebird/version.py b/lyrebird/version.py index 1be7493eb..51c9a428d 100644 --- a/lyrebird/version.py +++ b/lyrebird/version.py @@ -1,3 +1,3 @@ -IVERSION = (2, 23, 2) +IVERSION = (2, 23, 3) VERSION = ".".join(str(i) for i in IVERSION) LYREBIRD = "Lyrebird " + VERSION