From 3170d729b7f731502ae96b8e8e63a4e43d117a5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Ml=C3=A1dek?= Date: Sun, 27 Jun 2021 00:37:18 +0200 Subject: [PATCH] stringify value before sending --- 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 1ae0c11..6b05cca 100644 --- a/ui/src/components/AttributeView.vue +++ b/ui/src/components/AttributeView.vue @@ -66,7 +66,7 @@ export default defineComponent({ attribute: change.attribute, value: { t: "Value", - c: change.value, + c: JSON.stringify(change.value), }, }), });