diff --git a/frontend/src/_components/OrganizationManager/CreateOrganization.jsx b/frontend/src/_components/OrganizationManager/CreateOrganization.jsx
index 9b8e74d389..52a463ac86 100644
--- a/frontend/src/_components/OrganizationManager/CreateOrganization.jsx
+++ b/frontend/src/_components/OrganizationManager/CreateOrganization.jsx
@@ -124,7 +124,7 @@ export const CreateOrganization = ({ showCreateOrg, setShowCreateOrg }) => {
- Unique workspace slug
+ Unique workspace slug
{
)}
{fields['slug']?.error ? (
-
{fields['slug']?.error || ''}
+
+ {fields['slug']?.error || ''}
+
) : fields['slug'].value && !slugProgress ? (
-
{`Slug accepted!`}
+
{`Slug accepted!`}
) : (
-
{`URL-friendly 'slug' consists of lowercase letters, numbers, and hyphens`}
+
{`URL-friendly 'slug' consists of lowercase letters, numbers, and hyphens`}
)}
-
Workspace link
-
+
Workspace link
+
{!slugProgress ? (
`${getHostURL()}/${fields['slug']?.value || ''}`
) : (
@@ -198,7 +207,7 @@ export const CreateOrganization = ({ showCreateOrg, setShowCreateOrg }) => {
)}
-
+
{fields['slug'].value && !fields['slug'].error && !slugProgress ? `Link updated successfully!` : ''}
diff --git a/frontend/src/_components/OrganizationManager/EditOrganization.jsx b/frontend/src/_components/OrganizationManager/EditOrganization.jsx
index 3ebe0d5602..20ee9816ef 100644
--- a/frontend/src/_components/OrganizationManager/EditOrganization.jsx
+++ b/frontend/src/_components/OrganizationManager/EditOrganization.jsx
@@ -160,7 +160,7 @@ export const EditOrganization = ({ showEditOrg, setShowEditOrg, currentValue })
-
Workspace link
-
+
Workspace link
+
{!slugProgress ? (
`${getHostURL()}/${fields['slug']?.value || ''}`
) : (
@@ -237,7 +246,7 @@ export const EditOrganization = ({ showEditOrg, setShowEditOrg, currentValue })
)}
-
+
{!slugProgress &&
fields['slug'].value &&
!fields['slug'].error &&
@@ -249,13 +258,14 @@ export const EditOrganization = ({ showEditOrg, setShowEditOrg, currentValue })
-
+
{t('globals.cancel', 'Cancel')}
{t('globals.save', 'Save')}