Skip to content

Commit 04cb6e3

Browse files
committed
fix: logs
1 parent 8aff3a3 commit 04cb6e3

File tree

4 files changed

+4
-7
lines changed

4 files changed

+4
-7
lines changed

src/routes/(console)/project-[project]/functions/create-function/manual/configuration.svelte

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
<Layout.Stack>
1313
<Accordion title="Build settings" badge="Optional">
1414
<Layout.Stack gap="xl">
15-
Set up how your project is built.
1615
<InputText
1716
id="installCommand"
1817
label="Install command"

src/routes/(console)/project-[project]/functions/create-function/repository-[repository]/configuration.svelte

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
<Layout.Stack>
1313
<Accordion title="Build settings" badge="Optional">
1414
<Layout.Stack gap="xl">
15-
Set up how your project is built.
1615
<InputText
1716
id="installCommand"
1817
label="Install command"

src/routes/(console)/project-[project]/sites/(components)/logs.svelte

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,12 @@
3333
if (deployment.status === 'failed') {
3434
return 'Your deployment has failed.';
3535
} else if (deployment.status === 'building') {
36-
return 'Preparing for build ...';
36+
//Do not remove empty space before the string it's an invisible character
37+
return 'Preparing for build ... \n';
3738
} else if (deployment.status === 'waiting') {
38-
return 'Preparing for build ...';
39+
return '[37mPreparing for build ... [0m\n';
3940
} else if (deployment.status === 'processing') {
40-
return 'Preparing for build ...';
41+
return '[37mPreparing for build ... [0m\n';
4142
} else {
4243
return emptyCopy;
4344
}

src/routes/(console)/project-[project]/sites/site-[site]/settings/updateLogging.svelte

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,6 @@
4848
trackError(error, Submit.SiteUpdateLogging);
4949
}
5050
}
51-
52-
$: console.log(logging);
5351
</script>
5452

5553
<Form onSubmit={update}>

0 commit comments

Comments
 (0)