From af3360daee4a839fe0d800fa55c1edcdc132aed2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fatih=20Y=C4=B1lmaz?= <60826916+Queaxtra@users.noreply.github.com> Date: Wed, 22 Jan 2025 04:01:44 +0300 Subject: [PATCH] fix: show error message when instance name is empty at signup Fixed the error of entering a blank name instead of entering a name on the registration page. --- .../src/routes/(static)/get-started/RegisterForm.svelte | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/dashboard/src/routes/(static)/get-started/RegisterForm.svelte b/packages/dashboard/src/routes/(static)/get-started/RegisterForm.svelte index 5403869b..ba5b531a 100644 --- a/packages/dashboard/src/routes/(static)/get-started/RegisterForm.svelte +++ b/packages/dashboard/src/routes/(static)/get-started/RegisterForm.svelte @@ -144,7 +144,9 @@
- {#if $instanceInfo.fetching} + {#if $instanceNameField === ''} + Please enter an instance name + {:else if $instanceInfo.fetching} Verifying... {:else if $instanceInfo.available}