don't stringify values before PUTting them

feat/vaults
Tomáš Mládek 2021-07-14 00:24:11 +02:00
parent 552c37d239
commit a3acb8389c
1 changed files with 1 additions and 1 deletions

View File

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