mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-06-27 17:09:34 -04: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,
|
faHdd,
|
||||||
faSearch,
|
faSearch,
|
||||||
faSync,
|
faSync,
|
||||||
|
faTriangleExclamation,
|
||||||
faWrench,
|
faWrench,
|
||||||
} from "@fortawesome/free-solid-svg-icons";
|
} from "@fortawesome/free-solid-svg-icons";
|
||||||
import { Table as TableInstance } from "@tanstack/table-core/build/lib/types";
|
import { Table as TableInstance } from "@tanstack/table-core/build/lib/types";
|
||||||
|
@ -62,6 +63,10 @@ const SeriesEpisodesView: FunctionComponent = () => {
|
||||||
icon: faHdd,
|
icon: faHdd,
|
||||||
text: `${series?.episodeFileCount} files`,
|
text: `${series?.episodeFileCount} files`,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
icon: faTriangleExclamation,
|
||||||
|
text: `${series?.episodeMissingCount} missing subtitles`,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
icon: faAdjust,
|
icon: faAdjust,
|
||||||
text: series?.seriesType ?? "",
|
text: series?.seriesType ?? "",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue