Browse Source

Display search popout at fixed screen position (#16463)

* Display search popout at fixed screen position

* Attach search popout to search box
closed-social-glitch-2
Rens Groothuijsen 1 year ago
committed by GitHub
parent
commit
726c7dea31
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      app/javascript/mastodon/features/compose/components/search.js

+ 1
- 2
app/javascript/mastodon/features/compose/components/search.js 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>

Loading…
Cancel
Save