diff --git a/frontend/src/pages/Series/index.tsx b/frontend/src/pages/Series/index.tsx index 334f86d99..bab2f1ba3 100644 --- a/frontend/src/pages/Series/index.tsx +++ b/frontend/src/pages/Series/index.tsx @@ -67,9 +67,10 @@ const SeriesView: FunctionComponent = () => { Header: "Episodes", accessor: "episodeFileCount", selectHide: true, - Cell: (row) => { - const { episodeFileCount, episodeMissingCount, profileId } = - row.row.original; + Cell: ({ row }) => { + const { episodeFileCount, episodeMissingCount, profileId, title } = + row.original; + let progress = 0; let label = ""; if (episodeFileCount === 0 || !profileId) { @@ -86,6 +87,7 @@ const SeriesView: FunctionComponent = () => { return (