mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Revert search suggestion layout change
This commit is contained in:
parent
e3fd25cfbd
commit
fbbc8a85f3
1 changed files with 9 additions and 6 deletions
|
@ -30,12 +30,15 @@ const SearchSuggestions: FunctionComponent<SearchSuggestionsProps> = ({ parentId
|
|||
|
||||
<div className='searchSuggestionsList padded-left padded-right'>
|
||||
{suggestions?.map(item => (
|
||||
<LinkButton key={item.Id}
|
||||
className='button-link'
|
||||
style={{ display: 'inline-block', padding: '0.5em 1em' }}
|
||||
href={appRouter.getRouteUrl(item)}>
|
||||
{item.Name}
|
||||
</LinkButton>
|
||||
<div key={item.Id}>
|
||||
<LinkButton
|
||||
className='button-link'
|
||||
style={{ display: 'inline-block', padding: '0.5em 1em' }}
|
||||
href={appRouter.getRouteUrl(item)}
|
||||
>
|
||||
{item.Name}
|
||||
</LinkButton>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue