diff --git a/src/routes/help/submitting.svelte b/src/routes/help/submitting.svelte index 16a6cf579..457196c52 100644 --- a/src/routes/help/submitting.svelte +++ b/src/routes/help/submitting.svelte @@ -30,7 +30,7 @@ let clipboardCopy = false; const copy = () => { - copyToClipboard(JSON.stringify(jsonSnippet, null, 4)).then(() => (clipboardCopy = false)); + copyToClipboard(JSON.stringify(jsonSnippet, null, '\t')).then(() => (clipboardCopy = false)); clipboardCopy = true; }; @@ -171,7 +171,7 @@
- {JSON.stringify(jsonSnippet,null,4)} + {JSON.stringify(jsonSnippet,null,'\t')}