Skip to content

Commit

Permalink
Merge pull request #3565 from neos/bugfix/3495-dimension-selector-dea…
Browse files Browse the repository at this point in the history
…ctivate-searchbox

BUGFIX: #3495 dimension selector deactivate search-box
  • Loading branch information
crydotsnake authored Jul 6, 2023
2 parents 096c8d7 + 55b8df5 commit b224700
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export default class DimensionSelector extends PureComponent {
value={activePreset}
allowEmpty={false}
headerIcon={showDropDownHeaderIcon ? this.props.icon : null}
displaySearchBox={sortedPresetOptions.length >= 10}
displaySearchBox={false} // TODO reenable `sortedPresetOptions.length >= 10` but see https://github.com/neos/neos-ui/issues/3495
searchOptions={searchOptions(this.state.searchTerm, sortedPresetOptions)}
onSearchTermChange={this.handleSearchTermChange}
noMatchesFoundLabel={i18nRegistry.translate('Neos.Neos:Main:noMatchesFound')}
Expand Down

0 comments on commit b224700

Please sign in to comment.