diff --git a/frontend/src/business/components/history/ChangeHistory.vue b/frontend/src/business/components/history/ChangeHistory.vue index 0e84ddaef7..e9ae3427aa 100644 --- a/frontend/src/business/components/history/ChangeHistory.vue +++ b/frontend/src/business/components/history/ChangeHistory.vue @@ -126,6 +126,12 @@ export default { this.$refs.environmentHistoryDetail.open(value); } else { + try { + value.newValue = JSON.parse(value.newValue); + value.originalValue = JSON.parse(value.originalValue); + } catch (e) { + // console.info(e); + } this.$refs.historyDetail.open(value); } },