Fix search popout including full-text search instructions when full-text search is disabled (#26755)

This commit is contained in:
Claire 2023-09-01 15:13:27 +02:00 committed by GitHub
parent 5c0a9aac3b
commit 6c4c72497a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 9 deletions

View File

@ -80,7 +80,7 @@ class Search extends PureComponent {
handleKeyDown = (e) => {
const { selectedOption } = this.state;
const options = this._getOptions().concat(this.defaultOptions);
const options = searchEnabled ? this._getOptions().concat(this.defaultOptions) : this._getOptions();
switch(e.key) {
case 'Escape':
@ -353,6 +353,8 @@ class Search extends PureComponent {
</>
)}
{searchEnabled && (
<>
<h4><FormattedMessage id='search_popout.options' defaultMessage='Search options' /></h4>
<div className='search__popout__menu'>
@ -362,6 +364,8 @@ class Search extends PureComponent {
</button>
))}
</div>
</>
)}
</div>
</div>
);