From efe3c67ec63af7da4e1f0f35fd67f559c7605692 Mon Sep 17 00:00:00 2001 From: Arman Date: Mon, 28 Aug 2023 10:22:49 +0200 Subject: [PATCH] fix: deployment overflow, retry copy, format code --- src/lib/pages/domains/wizard/retry.svelte | 19 ++++++++++++++++--- .../(filters)/content.svelte | 2 +- .../deploymentSource.svelte | 8 +++++--- 3 files changed, 22 insertions(+), 7 deletions(-) diff --git a/src/lib/pages/domains/wizard/retry.svelte b/src/lib/pages/domains/wizard/retry.svelte index b9ac80acc..7033e3cb8 100644 --- a/src/lib/pages/domains/wizard/retry.svelte +++ b/src/lib/pages/domains/wizard/retry.svelte @@ -50,9 +50,13 @@

- In order to continue, set the following record on your DNS provider. Find a list of - domain providers and their DNS settings in our documentation. Changes may take time to - be effective. + In order to continue, set the following record on your DNS provider. DNS records may + take up to 48 hours to propagate. Please retry over the next 48 hours, but if + verification still fails, please contact support.

@@ -72,6 +76,15 @@ {/if}
+

+ In order to continue, set the following record on your DNS provider. DNS records may + take up to 48 hours to propagate. Please retry over the next 48 hours, but if + verification still fails, please contact support. +

{#if $domain?.logs} {/if} diff --git a/src/routes/console/project-[project]/databases/database-[database]/collection-[collection]/(filters)/content.svelte b/src/routes/console/project-[project]/databases/database-[database]/collection-[collection]/(filters)/content.svelte index ae94b0e9d..799e9e7f4 100644 --- a/src/routes/console/project-[project]/databases/database-[database]/collection-[collection]/(filters)/content.svelte +++ b/src/routes/console/project-[project]/databases/database-[database]/collection-[collection]/(filters)/content.svelte @@ -107,7 +107,7 @@ } $: isDisabled = (function getDisabled() { - return !operator || (!operator?.hideInput && !value) + return !operator || (!operator?.hideInput && !value); })(); diff --git a/src/routes/console/project-[project]/functions/function-[function]/deploymentSource.svelte b/src/routes/console/project-[project]/functions/function-[function]/deploymentSource.svelte index eae9b53aa..d4a9bf35c 100644 --- a/src/routes/console/project-[project]/functions/function-[function]/deploymentSource.svelte +++ b/src/routes/console/project-[project]/functions/function-[function]/deploymentSource.svelte @@ -1,5 +1,5 @@