Display search popout at fixed screen position (#16463)

* Display search popout at fixed screen position

* Attach search popout to search box
This commit is contained in:
Rens Groothuijsen 2022-12-15 17:38:50 +01:00 committed by GitHub
parent ff414a5489
commit 726c7dea31
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -140,8 +140,7 @@ class Search extends React.PureComponent {
<Icon id='search' className={hasValue ? '' : 'active'} />
<Icon id='times-circle' className={hasValue ? 'active' : ''} aria-label={intl.formatMessage(messages.placeholder)} />
</div>
<Overlay show={expanded && !hasValue} placement='bottom' target={this}>
<Overlay show={expanded && !hasValue} placement='bottom' target={this} container={this}>
<SearchPopout />
</Overlay>
</div>