diff --git a/components/DownloadItem.tsx b/components/DownloadItem.tsx index 246eb2e3..bde17688 100644 --- a/components/DownloadItem.tsx +++ b/components/DownloadItem.tsx @@ -36,12 +36,16 @@ interface DownloadProps extends ViewProps { items: BaseItemDto[]; MissingDownloadIconComponent: () => React.ReactElement; DownloadedIconComponent: () => React.ReactElement; + title?: string; + subtitle?: string; } export const DownloadItems: React.FC = ({ items, MissingDownloadIconComponent, DownloadedIconComponent, + title = "Download", + subtitle = "", ...props }) => { const [api] = useAtom(apiAtom); @@ -328,11 +332,9 @@ export const DownloadItems: React.FC = ({ - Download - - - Entire season of {items.length} episodes + {title} + {subtitle} = ({ }) => { return ( (