Skip to content
Extraits de code Groupes Projets
Non vérifiée Valider 0a3fa034 rédigé par Eugen Rochko's avatar Eugen Rochko Validation de GitHub
Parcourir les fichiers

Fix "You might be interested in" flashing while searching in web UI (#16162)

parent 8d75bd00
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -32,6 +32,7 @@ export function submitSearch() { ...@@ -32,6 +32,7 @@ export function submitSearch() {
const value = getState().getIn(['search', 'value']); const value = getState().getIn(['search', 'value']);
if (value.length === 0) { if (value.length === 0) {
dispatch(fetchSearchSuccess({ accounts: [], statuses: [], hashtags: [] }, ''));
return; return;
} }
......
...@@ -33,6 +33,12 @@ class SearchResults extends ImmutablePureComponent { ...@@ -33,6 +33,12 @@ class SearchResults extends ImmutablePureComponent {
} }
} }
componentDidUpdate () {
if (this.props.searchTerm === '') {
this.props.fetchSuggestions();
}
}
handleLoadMoreAccounts = () => this.props.expandSearch('accounts'); handleLoadMoreAccounts = () => this.props.expandSearch('accounts');
handleLoadMoreStatuses = () => this.props.expandSearch('statuses'); handleLoadMoreStatuses = () => this.props.expandSearch('statuses');
...@@ -42,7 +48,7 @@ class SearchResults extends ImmutablePureComponent { ...@@ -42,7 +48,7 @@ class SearchResults extends ImmutablePureComponent {
render () { render () {
const { intl, results, suggestions, dismissSuggestion, searchTerm } = this.props; const { intl, results, suggestions, dismissSuggestion, searchTerm } = this.props;
if (results.isEmpty() && !suggestions.isEmpty()) { if (searchTerm === '' && !suggestions.isEmpty()) {
return ( return (
<div className='search-results'> <div className='search-results'>
<div className='trends'> <div className='trends'>
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter