1
0
Fork 0
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:
Bill Thornton 2024-09-23 12:01:38 -04:00
parent e3fd25cfbd
commit fbbc8a85f3

View file

@ -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>