Skip to content

Commit

Permalink
fix inspector page responsebodydiff load error (#810)
Browse files Browse the repository at this point in the history
  • Loading branch information
noO0oOo0ob authored Dec 8, 2023
1 parent 11edaa6 commit 2a7606b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/CodeDiffEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ export default {
}
)
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)
})
}
};
Expand Down

0 comments on commit 2a7606b

Please sign in to comment.