diff options
Diffstat (limited to 'server/sonar-web/src/main/js/apps/quality-profiles/details/ProfilePermissionsFormSelect.tsx')
-rw-r--r-- | server/sonar-web/src/main/js/apps/quality-profiles/details/ProfilePermissionsFormSelect.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/sonar-web/src/main/js/apps/quality-profiles/details/ProfilePermissionsFormSelect.tsx b/server/sonar-web/src/main/js/apps/quality-profiles/details/ProfilePermissionsFormSelect.tsx index 08e39200ed6..6db2eeb7e33 100644 --- a/server/sonar-web/src/main/js/apps/quality-profiles/details/ProfilePermissionsFormSelect.tsx +++ b/server/sonar-web/src/main/js/apps/quality-profiles/details/ProfilePermissionsFormSelect.tsx @@ -95,14 +95,14 @@ export default class ProfilePermissionsFormSelect extends React.PureComponent<Pr autoFocus={true} className="Select-big" clearable={false} - isLoading={this.state.loading} // disable default react-select filtering filterOptions={identity} + isLoading={this.state.loading} noResultsText={noResultsText} - optionRenderer={optionRenderer} - options={options} onChange={this.props.onChange} onInputChange={this.handleInputChange} + optionRenderer={optionRenderer} + options={options} placeholder="" searchable={true} value={this.props.selected && getStringValue(this.props.selected)} |