Skip to content

Commit

Permalink
fix responsebodydiff not fresh when change flow detail (#812)
Browse files Browse the repository at this point in the history
* fix responsebodydiff not fresh when change flow detail

* version
  • Loading branch information
noO0oOo0ob authored Dec 8, 2023
1 parent 2a7606b commit 9a2c6f3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/CodeDiffEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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)
});
}
Expand Down
2 changes: 1 addition & 1 deletion lyrebird/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
IVERSION = (2, 23, 2)
IVERSION = (2, 23, 3)
VERSION = ".".join(str(i) for i in IVERSION)
LYREBIRD = "Lyrebird " + VERSION

0 comments on commit 9a2c6f3

Please sign in to comment.