|
|
@@ -100,7 +100,7 @@ class LdapSecuritySetting extends React.Component {
|
|
|
className="form-control"
|
|
|
type="text"
|
|
|
name="serverUrl"
|
|
|
- defaultValue={adminLdapSecurityContainer.state.serverUrl}
|
|
|
+ defaultValue={adminLdapSecurityContainer.state.serverUrl || ''}
|
|
|
onChange={e => adminLdapSecurityContainer.changeServerUrl(e.target.value)}
|
|
|
/>
|
|
|
<small>
|
|
|
@@ -148,7 +148,7 @@ class LdapSecuritySetting extends React.Component {
|
|
|
className="form-control"
|
|
|
type="text"
|
|
|
name="bindDN"
|
|
|
- defaultValue={adminLdapSecurityContainer.state.ldapBindDN}
|
|
|
+ defaultValue={adminLdapSecurityContainer.state.ldapBindDN || ''}
|
|
|
onChange={e => adminLdapSecurityContainer.changeBindDN(e.target.value)}
|
|
|
/>
|
|
|
{(adminLdapSecurityContainer.state.isUserBind === false) ? (
|
|
|
@@ -181,7 +181,7 @@ class LdapSecuritySetting extends React.Component {
|
|
|
className="form-control passport-ldap-managerbind"
|
|
|
type="password"
|
|
|
name="bindDNPassword"
|
|
|
- defaultValue={adminLdapSecurityContainer.state.ldapBindDNPassword}
|
|
|
+ defaultValue={adminLdapSecurityContainer.state.ldapBindDNPassword || ''}
|
|
|
onChange={e => adminLdapSecurityContainer.changeBindDNPassword(e.target.value)}
|
|
|
/>
|
|
|
{(adminLdapSecurityContainer.state.bindMode === 'manager') ? (
|
|
|
@@ -208,7 +208,7 @@ class LdapSecuritySetting extends React.Component {
|
|
|
className="form-control"
|
|
|
type="text"
|
|
|
name="searchFilter"
|
|
|
- defaultValue={adminLdapSecurityContainer.state.ldapSearchFilter}
|
|
|
+ defaultValue={adminLdapSecurityContainer.state.ldapSearchFilter || ''}
|
|
|
onChange={e => adminLdapSecurityContainer.changeSearchFilter(e.target.value)}
|
|
|
/>
|
|
|
<p className="help-block">
|
|
|
@@ -243,7 +243,7 @@ class LdapSecuritySetting extends React.Component {
|
|
|
type="text"
|
|
|
placeholder="Default: uid"
|
|
|
name="attrMapUsername"
|
|
|
- defaultValue={adminLdapSecurityContainer.state.ldapAttrMapUsername}
|
|
|
+ defaultValue={adminLdapSecurityContainer.state.ldapAttrMapUsername || ''}
|
|
|
onChange={e => adminLdapSecurityContainer.changeAttrMapUsername(e.target.value)}
|
|
|
/>
|
|
|
<p className="help-block">
|
|
|
@@ -283,7 +283,7 @@ class LdapSecuritySetting extends React.Component {
|
|
|
type="text"
|
|
|
placeholder="Default: mail"
|
|
|
name="attrMapMail"
|
|
|
- defaultValue={adminLdapSecurityContainer.state.ldapAttrMapMail}
|
|
|
+ defaultValue={adminLdapSecurityContainer.state.ldapAttrMapMail || ''}
|
|
|
onChange={e => adminLdapSecurityContainer.changeAttrMapMail(e.target.value)}
|
|
|
/>
|
|
|
<p className="help-block">
|
|
|
@@ -301,7 +301,7 @@ class LdapSecuritySetting extends React.Component {
|
|
|
className="form-control"
|
|
|
type="text"
|
|
|
name="attrMapName"
|
|
|
- defaultValue={adminLdapSecurityContainer.state.ldapAttrMapName}
|
|
|
+ defaultValue={adminLdapSecurityContainer.state.ldapAttrMapName || ''}
|
|
|
onChange={e => adminLdapSecurityContainer.changeAttrMapName(e.target.value)}
|
|
|
/>
|
|
|
<p className="help-block">
|
|
|
@@ -324,7 +324,7 @@ class LdapSecuritySetting extends React.Component {
|
|
|
className="form-control"
|
|
|
type="text"
|
|
|
name="groupSearchBase"
|
|
|
- defaultValue={adminLdapSecurityContainer.state.ldapGroupSearchBase}
|
|
|
+ defaultValue={adminLdapSecurityContainer.state.ldapGroupSearchBase || ''}
|
|
|
onChange={e => adminLdapSecurityContainer.changeGroupSearchBase(e.target.value)}
|
|
|
/>
|
|
|
<p className="help-block">
|
|
|
@@ -344,7 +344,7 @@ class LdapSecuritySetting extends React.Component {
|
|
|
className="form-control"
|
|
|
type="text"
|
|
|
name="groupSearchFilter"
|
|
|
- defaultValue={adminLdapSecurityContainer.state.ldapGroupSearchFilter}
|
|
|
+ defaultValue={adminLdapSecurityContainer.state.ldapGroupSearchFilter || ''}
|
|
|
onChange={e => adminLdapSecurityContainer.changeGroupSearchFilter(e.target.value)}
|
|
|
/>
|
|
|
<p className="help-block">
|
|
|
@@ -374,7 +374,7 @@ class LdapSecuritySetting extends React.Component {
|
|
|
type="text"
|
|
|
placeholder="Default: uid"
|
|
|
name="groupDnProperty"
|
|
|
- defaultValue={adminLdapSecurityContainer.state.ldapGroupDnProperty}
|
|
|
+ defaultValue={adminLdapSecurityContainer.state.ldapGroupDnProperty || ''}
|
|
|
onChange={e => adminLdapSecurityContainer.changeGroupDnProperty(e.target.value)}
|
|
|
/>
|
|
|
<p className="help-block">
|