diff --git a/src/client/components/Dashboard/Dashboard.tsx b/src/client/components/Dashboard/Dashboard.tsx index 3620993..d247b17 100644 --- a/src/client/components/Dashboard/Dashboard.tsx +++ b/src/client/components/Dashboard/Dashboard.tsx @@ -88,7 +88,7 @@ export const Dashboard = (): ReactElement => {
{recentComics?.data.docs.map((recentComic, idx) => ( { >
Address
-
+
@@ -105,6 +105,15 @@ export const Dashboard = (): ReactElement => { {recentComic.inferredMetadata.issue.number} + + + + + + + {recentComic.rawFileDetails.extension} + +
diff --git a/src/client/components/shared/Carda.tsx b/src/client/components/shared/Carda.tsx index 7771ed9..a70c58f 100644 --- a/src/client/components/shared/Carda.tsx +++ b/src/client/components/shared/Carda.tsx @@ -107,19 +107,36 @@ const renderCard = (props: ICardProps): ReactElement => { case "horizontal-2-small": return ( <> -
+
{/* thumbnail */}
{/* details */} -
+

{props.title}

nothin
); + + case "horizontal-2-medium": + return ( + <> +
+ {/* thumbnail */} +
+ +
+ {/* details */} +
+

{props.title}

+ {props.hasDetails && <>{props.children}} +
+
+ + ); default: return <>; }