Fix: Completely hide org slug input field when org slug is passed or default slug is provided

This commit is contained in:
Daniel Hougaard
2024-06-20 18:36:11 +02:00
parent 14751df9de
commit b0f3476e4a

View File

@@ -67,7 +67,7 @@ export const LoginLDAP = () => {
What's your LDAP Login?
</p>
<form onSubmit={handleSubmission}>
{!config.defaultOrgSlug && (
{!config.defaultOrgSlug && !passedOrgSlug && (
<div className="relative mx-auto flex max-h-24 w-1/4 w-full min-w-[20rem] items-center justify-center rounded-lg md:max-h-28 md:min-w-[22rem] lg:w-1/6">
<div className="flex max-h-24 w-full items-center justify-center rounded-lg md:max-h-28">
<Input
@@ -79,7 +79,6 @@ export const LoginLDAP = () => {
autoComplete="email"
id="email"
className="h-12"
isDisabled={passedOrgSlug !== null}
/>
</div>
</div>