mirror of
https://github.com/morpheus65535/bazarr
synced 2025-02-23 06:21:05 +00:00
Added missing subtitles count in series episodes view
This commit is contained in:
parent
43a5841d04
commit
f81780fac5
1 changed files with 5 additions and 0 deletions
|
@ -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";
|
||||
|
@ -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 ?? "",
|
||||
|
|
Loading…
Reference in a new issue