We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a36c34 commit 0c5eb52Copy full SHA for 0c5eb52
src/components/Common/OAJSONEditor.vue
@@ -18,7 +18,7 @@ const emit = defineEmits(['update:modelValue'])
18
19
const value = computed({
20
get: () => props.modelValue,
21
- set: val => emit('update:modelValue', val),
+ set: val => emit('update:modelValue', JSON.parse(val)),
22
})
23
24
const themeConfig = useTheme()
0 commit comments