diff --git a/src/client/components/Dashboard/RecentlyImported.tsx b/src/client/components/Dashboard/RecentlyImported.tsx index 8b64b50..8516b14 100644 --- a/src/client/components/Dashboard/RecentlyImported.tsx +++ b/src/client/components/Dashboard/RecentlyImported.tsx @@ -51,7 +51,6 @@ export const RecentlyImported = ({ }, idx, ) => { - console.log(comicvine); const { issueName, url } = determineCoverFile({ rawFileDetails, comicvine, @@ -63,7 +62,6 @@ export const RecentlyImported = ({ comicInfo, locg, }); - console.log(name); const isComicBookMetadataAvailable = !isUndefined(comicvine) && !isUndefined(comicvine.volumeInformation); diff --git a/src/client/components/Library/Library.tsx b/src/client/components/Library/Library.tsx index 107023f..0366e80 100644 --- a/src/client/components/Library/Library.tsx +++ b/src/client/components/Library/Library.tsx @@ -208,14 +208,13 @@ export const Library = (): ReactElement => { // ImportStatus.propTypes = { // value: PropTypes.bool.isRequired, // }; - return (

Library

- {!isUndefined(searchResults.hits) && ( + {!isEmpty(searchResults) ? (
{ />
- )} + ):
+
+
+
+ No comics were found in the library, Elasticsearch reports no + indices. Try importing a few comics into the library and come + back. +
+
+
+              {!isUndefined(searchError.data) &&
+                JSON.stringify(
+                  searchError.data.meta.body.error.root_cause,
+                  null,
+                  4,
+                )}
+            
+
+
}
); diff --git a/src/client/components/Navbar.tsx b/src/client/components/Navbar.tsx index c7c6999..db66d98 100644 --- a/src/client/components/Navbar.tsx +++ b/src/client/components/Navbar.tsx @@ -84,6 +84,14 @@ const Navbar: React.FunctionComponent = (props) => { ) : null} + {/* AirDC++ socket connection status */} +
+ + + +
+ +
Blog