mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Fix invalid class names
This commit is contained in:
parent
f7e09708fc
commit
69df532c27
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@ const SearchResults: FC<SearchResultsProps> = ({
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={'searchResults, padded-top, padded-bottom-page'}>
|
<div className={'searchResults padded-top padded-bottom-page'}>
|
||||||
{data.map((section, index) => renderSection(section, index))}
|
{data.map((section, index) => renderSection(section, index))}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue