Skip to content

Commit

Permalink
Added missing subtitles count in series episodes view
Browse files Browse the repository at this point in the history
  • Loading branch information
morpheus65535 committed Dec 15, 2024
1 parent 43a5841 commit f81780f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions frontend/src/pages/Episodes/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import {
faHdd,
faSearch,
faSync,
faTriangleExclamation,
faWrench,
} from "@fortawesome/free-solid-svg-icons";
import { Table as TableInstance } from "@tanstack/table-core/build/lib/types";
Expand Down Expand Up @@ -62,6 +63,10 @@ const SeriesEpisodesView: FunctionComponent = () => {
icon: faHdd,
text: `${series?.episodeFileCount} files`,
},
{
icon: faTriangleExclamation,
text: `${series?.episodeMissingCount} missing subtitles`,
},
{
icon: faAdjust,
text: series?.seriesType ?? "",
Expand Down

0 comments on commit f81780f

Please sign in to comment.