summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authormorpheus65535 <[email protected]>2024-12-15 10:02:03 -0500
committermorpheus65535 <[email protected]>2024-12-15 10:02:03 -0500
commitf81780fac564080301b06be76dbd33267b8f0ac8 (patch)
tree0527baca5486f6389e6a8f2713432add4274a21e
parent43a5841d04f07455f1f72d22817aa9a342772b91 (diff)
downloadbazarr-f81780fac564080301b06be76dbd33267b8f0ac8.tar.gz
bazarr-f81780fac564080301b06be76dbd33267b8f0ac8.zip
Added missing subtitles count in series episodes viewv1.4.6-beta.31
-rw-r--r--frontend/src/pages/Episodes/index.tsx5
1 files changed, 5 insertions, 0 deletions
diff --git a/frontend/src/pages/Episodes/index.tsx b/frontend/src/pages/Episodes/index.tsx
index 8075e77a1..69a8d67e8 100644
--- a/frontend/src/pages/Episodes/index.tsx
+++ b/frontend/src/pages/Episodes/index.tsx
@@ -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";
@@ -63,6 +64,10 @@ const SeriesEpisodesView: FunctionComponent = () => {
text: `${series?.episodeFileCount} files`,
},
{
+ icon: faTriangleExclamation,
+ text: `${series?.episodeMissingCount} missing subtitles`,
+ },
+ {
icon: faAdjust,
text: series?.seriesType ?? "",
},