New: Show all options when authentication modal is open
This commit is contained in:
parent
7f5769ab70
commit
c7d6c0f452
|
@ -81,8 +81,6 @@ function AuthenticationRequiredModalContent(props) {
|
|||
/>
|
||||
</FormGroup>
|
||||
|
||||
{
|
||||
authenticationEnabled ?
|
||||
<FormGroup>
|
||||
<FormLabel>Authentication Required</FormLabel>
|
||||
|
||||
|
@ -94,12 +92,8 @@ function AuthenticationRequiredModalContent(props) {
|
|||
onChange={onInputChange}
|
||||
{...authenticationRequired}
|
||||
/>
|
||||
</FormGroup> :
|
||||
null
|
||||
}
|
||||
</FormGroup>
|
||||
|
||||
{
|
||||
authenticationEnabled ?
|
||||
<FormGroup>
|
||||
<FormLabel>Username</FormLabel>
|
||||
|
||||
|
@ -109,12 +103,8 @@ function AuthenticationRequiredModalContent(props) {
|
|||
onChange={onInputChange}
|
||||
{...username}
|
||||
/>
|
||||
</FormGroup> :
|
||||
null
|
||||
}
|
||||
</FormGroup>
|
||||
|
||||
{
|
||||
authenticationEnabled ?
|
||||
<FormGroup>
|
||||
<FormLabel>Password</FormLabel>
|
||||
|
||||
|
@ -124,9 +114,7 @@ function AuthenticationRequiredModalContent(props) {
|
|||
onChange={onInputChange}
|
||||
{...password}
|
||||
/>
|
||||
</FormGroup> :
|
||||
null
|
||||
}
|
||||
</FormGroup>
|
||||
</div> :
|
||||
null
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue