diff --git a/web/src/components/config-form/section-configs/detect.ts b/web/src/components/config-form/section-configs/detect.ts index ac42b85b2e..5bbd219822 100644 --- a/web/src/components/config-form/section-configs/detect.ts +++ b/web/src/components/config-form/section-configs/detect.ts @@ -7,7 +7,7 @@ const detect: SectionConfigOverrides = { { key: "detect-disabled", messageKey: "configMessages.detect.disabled", - severity: "warning", + severity: "info", condition: (ctx) => ctx.level === "camera" && ctx.formData?.enabled === false, }, diff --git a/web/src/components/config-form/section-configs/objects.ts b/web/src/components/config-form/section-configs/objects.ts index d17b5a51dc..3d27abb012 100644 --- a/web/src/components/config-form/section-configs/objects.ts +++ b/web/src/components/config-form/section-configs/objects.ts @@ -11,6 +11,16 @@ const hideAttributeFilters = (config: FrigateConfig): string[] => const objects: SectionConfigOverrides = { base: { sectionDocs: "/configuration/object_filters", + messages: [ + { + key: "detect-disabled", + messageKey: "configMessages.detect.disabled", + severity: "info", + condition: (ctx) => + ctx.level === "camera" && + ctx.fullCameraConfig?.detect?.enabled === false, + }, + ], fieldMessages: [ { key: "genai-no-descriptions-provider",