diff --git a/src/client/components/ComicDetail/ComicVineMatchPanel.tsx b/src/client/components/ComicDetail/ComicVineMatchPanel.tsx index d60fc3e..b4e226b 100644 --- a/src/client/components/ComicDetail/ComicVineMatchPanel.tsx +++ b/src/client/components/ComicDetail/ComicVineMatchPanel.tsx @@ -44,9 +44,6 @@ export const ComicVineMatchPanel = (comicVineData): ReactElement => { - - -
{!isEmpty(comicVineSearchResults) && ( { - return ( - - - - - - - - - - {!isNil(props.data) && - props.data && - map(props.data, (bundle) => ( + return !isEmpty(props.data) ? ( +
+
FilenameSizeDownload Time
+ + + + + + + + + {map(props.data, (bundle) => ( ))} - -
FilenameSizeDownload Time
{ellipsize(bundle.name, 58)}
@@ -115,29 +114,34 @@ export const DownloadsPanel = (
+ + +
+ ) : ( +
{"No Downloads Found"}
); }; return !isNil(props.data) ? ( -
+ <> {!isNil(downloadProgressTick) ? ( ) : null} - {!isEmpty(ADCPPSocket) ? ( - - ) : ( -
-
-
- AirDC++ is not configured. Please configure it in{" "} - Settings. -
-
-
- )} -
+
+ {!isEmpty(ADCPPSocket) ? ( + + ) : ( +
+
+
+ AirDC++ is not configured. Please configure it in{" "} + Settings. +
+
+
+ )} +
+ ) : null; };