From d475b8591d3c23fcf72ccc337ed58314b956a910 Mon Sep 17 00:00:00 2001 From: LASER-Yi Date: Tue, 1 Feb 2022 23:47:22 +0800 Subject: [PATCH] Fix #1701 --- frontend/src/pages/Series/index.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) 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 (