From a3acb8389cac990c317598659dd3bbc97fa9f83f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Ml=C3=A1dek?= Date: Wed, 14 Jul 2021 00:24:11 +0200 Subject: [PATCH] don't stringify values before PUTting them --- ui/src/components/AttributeView.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/components/AttributeView.vue b/ui/src/components/AttributeView.vue index 6e766dd..613b04d 100644 --- a/ui/src/components/AttributeView.vue +++ b/ui/src/components/AttributeView.vue @@ -114,7 +114,7 @@ export default defineComponent({ attribute: change.attribute, value: { t: "Value", - c: JSON.stringify(change.value), + c: change.value, }, }), });