diff --git a/web/src/screens/filters/Details.tsx b/web/src/screens/filters/Details.tsx
index 4d066f2..541af57 100644
--- a/web/src/screens/filters/Details.tsx
+++ b/web/src/screens/filters/Details.tsx
@@ -222,7 +222,7 @@ const externalFilterSchema = z.object({
webhook_expect_status: z.number().optional(),
webhook_retry_status: z.string().optional(),
webhook_retry_attempts: z.number().optional(),
- webhook_retry_delay_seconds: z.number().optional(),
+ webhook_retry_delay_seconds: z.number().optional()
}).superRefine((value, ctx) => {
if (!value.name) {
ctx.addIssue({
diff --git a/web/src/screens/filters/sections/Advanced.tsx b/web/src/screens/filters/sections/Advanced.tsx
index e6a42d1..1cad2df 100644
--- a/web/src/screens/filters/sections/Advanced.tsx
+++ b/web/src/screens/filters/sections/Advanced.tsx
@@ -16,7 +16,7 @@ type ValueConsumer = {
const Releases = ({ values }: ValueConsumer) => (
@@ -92,9 +92,9 @@ const Releases = ({ values }: ValueConsumer) => (
);
-const Groups = () => (
+const Groups = ({ values }: ValueConsumer) => (
@@ -125,9 +125,9 @@ const Groups = () => (
);
-const Categories = () => (
+const Categories = ({ values }: ValueConsumer) => (
@@ -158,9 +158,9 @@ const Categories = () => (
);
-const Tags = () => (
+const Tags = ({ values }: ValueConsumer) => (
@@ -221,9 +221,9 @@ const Tags = () => (
);
-const Uploaders = () => (
+const Uploaders = ({ values }: ValueConsumer) => (
@@ -255,9 +255,9 @@ const Uploaders = () => (
);
-const Language = () => (
+const Language = ({ values }: ValueConsumer) => (
0) || (values.except_language && values.except_language.length > 0)}
title="Language"
subtitle="Match or ignore languages (if announced)"
>
@@ -276,9 +276,9 @@ const Language = () => (
);
-const Origins = () => (
+const Origins = ({ values }: ValueConsumer) => (
0 || values.except_origins && values.except_origins.length > 0)}
title="Origins"
subtitle="Match Internals, Scene, P2P, etc. (if announced)"
>
@@ -299,7 +299,7 @@ const Origins = () => (
const Freeleech = ({ values }: ValueConsumer) => (
@@ -351,7 +351,7 @@ const Freeleech = ({ values }: ValueConsumer) => (
const FeedSpecific = ({ values }: ValueConsumer) => (
These options are only for Feeds such as RSS, Torznab and Newznab>
@@ -402,7 +402,7 @@ const FeedSpecific = ({ values }: ValueConsumer) => (
const RawReleaseTags = ({ values }: ValueConsumer) => (
@@ -445,13 +445,13 @@ const RawReleaseTags = ({ values }: ValueConsumer) => (
export const Advanced = ({ values }: { values: FormikValues; }) => (
-
-
+
+
-
-
-
-
+
+
+
+