From 025d54b64e491e0c20a1c4565ad87b7e8466480d Mon Sep 17 00:00:00 2001 From: Vivek R Date: Sat, 3 Oct 2020 17:52:42 +0530 Subject: [PATCH] fix: incorrect csv import example on frontend Example given for CSV import on Import.vue is incorrect since field `attributes` value is not a valid JSON. Previous example copy pasted was throwing CSV parse error. --- frontend/src/views/Import.vue | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/frontend/src/views/Import.vue b/frontend/src/views/Import.vue index d7f7700..5427650 100644 --- a/frontend/src/views/Import.vue +++ b/frontend/src/views/Import.vue @@ -99,14 +99,12 @@ user1@mail.com, "User One", - {'"{""age"": 42, ""planet"": ""Mars""}"'} + "{""age"": 42, ""planet"": ""Mars""}"
user2@mail.com, "User Two", - - {'"{""age"": 24, ""job"": ""Time Traveller""}"'} - + "{""age"": 24, ""job"": ""Time Traveller""}"