1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Replace loading-circle handling

with native <Loading />
This commit is contained in:
Nathan G 2023-10-05 18:38:00 +00:00
parent d75221afc2
commit bf367a295c

View file

@ -6,6 +6,7 @@ import React, { FunctionComponent, useCallback, useEffect, useState } from 'reac
import globalize from '../../scripts/globalize';
import ServerConnections from '../ServerConnections';
import SearchResultsRow from './SearchResultsRow';
import Loading from '../loading/LoadingComponent';
type SearchResultsProps = {
serverId?: string;
@ -242,7 +243,7 @@ const SearchResults: FunctionComponent<SearchResultsProps> = ({ serverId = windo
)}
>
{isLoading ? (
<div className='loading-circle'></div>
<Loading />
) : (
<>
<SearchResultsRow