mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
fix: logs
This commit is contained in:
-1
@@ -12,7 +12,6 @@
|
||||
<Layout.Stack>
|
||||
<Accordion title="Build settings" badge="Optional">
|
||||
<Layout.Stack gap="xl">
|
||||
Set up how your project is built.
|
||||
<InputText
|
||||
id="installCommand"
|
||||
label="Install command"
|
||||
|
||||
-1
@@ -12,7 +12,6 @@
|
||||
<Layout.Stack>
|
||||
<Accordion title="Build settings" badge="Optional">
|
||||
<Layout.Stack gap="xl">
|
||||
Set up how your project is built.
|
||||
<InputText
|
||||
id="installCommand"
|
||||
label="Install command"
|
||||
|
||||
@@ -33,11 +33,12 @@
|
||||
if (deployment.status === 'failed') {
|
||||
return 'Your deployment has failed.';
|
||||
} else if (deployment.status === 'building') {
|
||||
return 'Preparing for build ...';
|
||||
//Do not remove empty space before the string it's an invisible character
|
||||
return '[37mPreparing for build ... [0m\n';
|
||||
} else if (deployment.status === 'waiting') {
|
||||
return 'Preparing for build ...';
|
||||
return '[37mPreparing for build ... [0m\n';
|
||||
} else if (deployment.status === 'processing') {
|
||||
return 'Preparing for build ...';
|
||||
return '[37mPreparing for build ... [0m\n';
|
||||
} else {
|
||||
return emptyCopy;
|
||||
}
|
||||
|
||||
@@ -48,8 +48,6 @@
|
||||
trackError(error, Submit.SiteUpdateLogging);
|
||||
}
|
||||
}
|
||||
|
||||
$: console.log(logging);
|
||||
</script>
|
||||
|
||||
<Form onSubmit={update}>
|
||||
|
||||
Reference in New Issue
Block a user