From bdc14ac8c966616eefb2e9b884f93cdaf6e0c65b Mon Sep 17 00:00:00 2001 From: kabhamo Date: Thu, 9 Mar 2023 02:41:02 +0200 Subject: [PATCH] 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) {