|
@@ -115,7 +115,7 @@ class UserGroupUserFormByInput extends React.Component {
|
|
|
ref={(c) => { this.typeahead = c }}
|
|
ref={(c) => { this.typeahead = c }}
|
|
|
inputProps={inputProps}
|
|
inputProps={inputProps}
|
|
|
isLoading={this.state.isLoading}
|
|
isLoading={this.state.isLoading}
|
|
|
- labelKey="name"
|
|
|
|
|
|
|
+ labelKey={user => `${user.username} ${user.name} ${user.email}`}
|
|
|
minLength={0}
|
|
minLength={0}
|
|
|
options={this.state.applicableUsers} // Search result
|
|
options={this.state.applicableUsers} // Search result
|
|
|
searchText={(this.state.isLoading ? 'Searching...' : this.getEmptyLabel())}
|
|
searchText={(this.state.isLoading ? 'Searching...' : this.getEmptyLabel())}
|