don't stringify values before PUTting them

This commit is contained in:
Tomáš Mládek 2021-07-14 00:24:11 +02:00
parent 552c37d239
commit a3acb8389c

View file

@ -114,7 +114,7 @@ export default defineComponent({
attribute: change.attribute,
value: {
t: "Value",
c: JSON.stringify(change.value),
c: change.value,
},
}),
});