From bdc14ac8c966616eefb2e9b884f93cdaf6e0c65b Mon Sep 17 00:00:00 2001 From: kabhamo Date: Thu, 9 Mar 2023 02:41:02 +0200 Subject: [PATCH 1/2] adding the missing quotes to JSON example --- .../functions/function-[function]/execute.svelte | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/routes/console/project-[project]/functions/function-[function]/execute.svelte b/src/routes/console/project-[project]/functions/function-[function]/execute.svelte index bccdbdd5f..65f59f005 100644 --- a/src/routes/console/project-[project]/functions/function-[function]/execute.svelte +++ b/src/routes/console/project-[project]/functions/function-[function]/execute.svelte @@ -18,9 +18,9 @@ let submitting = false; const example = `{ - firstName: "hello", - lastName:"world", - age:"old" + "firstName": "hello", + "lastName":"world", + "age":"old" }`; $: if (selectedFunction && !show) { From a7575c0c1686119be3d46739bf01d5757b63615a Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Mon, 20 Mar 2023 14:58:38 +0100 Subject: [PATCH 2/2] fix: json --- .../functions/function-[function]/execute.svelte | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/routes/console/project-[project]/functions/function-[function]/execute.svelte b/src/routes/console/project-[project]/functions/function-[function]/execute.svelte index 224b91721..5217d07e7 100644 --- a/src/routes/console/project-[project]/functions/function-[function]/execute.svelte +++ b/src/routes/console/project-[project]/functions/function-[function]/execute.svelte @@ -18,9 +18,9 @@ let submitting = false; const example = `{ - "firstName": "hello", - "lastName":"world", - "age":"old" + "firstName": "hello", + "lastName": "world", + "age": "old" }`; $: if (selectedFunction && !show) {