pl-fe: do not display trending statsues when searching for specific user's posts
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
parent
b4f78e0875
commit
3333254b01
1 changed files with 1 additions and 1 deletions
|
@ -158,7 +158,7 @@ const SearchResults = () => {
|
|||
/>
|
||||
));
|
||||
resultsIds = results.statuses;
|
||||
} else if (!submitted && trendingStatuses && !trendingStatuses.isEmpty()) {
|
||||
} else if (!submitted && !filterByAccount && trendingStatuses && !trendingStatuses.isEmpty()) {
|
||||
searchResults = trendingStatuses.map((statusId: string) => (
|
||||
// @ts-ignore
|
||||
<StatusContainer
|
||||
|
|
Loading…
Reference in a new issue