Skip to content

Commit

Permalink
v2.8.2 - Fix wrong input string in DataManager group detail stringObj…
Browse files Browse the repository at this point in the history
…ect (#681)

* Fix wrong input string in DataManager group detail stringObject

* update
  • Loading branch information
yumiguan authored Aug 18, 2022
1 parent 53363a8 commit 0615aaa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions frontend/src/views/datamanager/DataDetailInfo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,8 @@ export default {
let infoValue = this.$store.state.dataManager.groupDetail[this.infoKey]
if (infoValue === null) {
return infoValue
} else if (this.inputValueType === 'stringObject') {
return infoValue.value
} else if (typeof infoValue === 'object') {
return JSON.stringify(infoValue)
} else {
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, 8, 1)
IVERSION = (2, 8, 2)
VERSION = ".".join(str(i) for i in IVERSION)
LYREBIRD = "Lyrebird " + VERSION

0 comments on commit 0615aaa

Please sign in to comment.