mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Main Iteration
This commit is contained in:
parent
2ffead179a
commit
838d496aab
2 changed files with 33 additions and 2 deletions
|
@ -241,7 +241,7 @@ const SearchResults: FunctionComponent<SearchResultsProps> = ({ serverId = windo
|
|||
)}
|
||||
>
|
||||
{isLoading ? (
|
||||
<div>Loading...</div> // Replace this with your preferred progress indicator
|
||||
<div className='loading-circle'></div>
|
||||
) : (
|
||||
<>
|
||||
<SearchResultsRow
|
||||
|
@ -333,7 +333,7 @@ const SearchResults: FunctionComponent<SearchResultsProps> = ({ serverId = windo
|
|||
/>
|
||||
|
||||
{allEmpty && !isLoading && (
|
||||
<div>Sorry, nothing's here :/</div>
|
||||
<div className='sorry-text'>Sorry! No results found for "{query}"</div>
|
||||
)}
|
||||
</>
|
||||
)}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue