From 4efffda34d576540062acf46d897a3470011e6fd Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Tue, 3 Mar 2026 13:31:49 -0600 Subject: [PATCH] frontend --- web/src/components/config-form/section-configs/motion.ts | 3 +++ web/src/types/frigateConfig.ts | 1 + 2 files changed, 4 insertions(+) diff --git a/web/src/components/config-form/section-configs/motion.ts b/web/src/components/config-form/section-configs/motion.ts index 0acdc0d99..c2b64178d 100644 --- a/web/src/components/config-form/section-configs/motion.ts +++ b/web/src/components/config-form/section-configs/motion.ts @@ -8,6 +8,7 @@ const motion: SectionConfigOverrides = { "enabled", "threshold", "lightning_threshold", + "skip_motion_threshold", "improve_contrast", "contour_area", "delta_alpha", @@ -22,6 +23,7 @@ const motion: SectionConfigOverrides = { hiddenFields: ["enabled_in_config", "mask", "raw_mask"], advancedFields: [ "lightning_threshold", + "skip_motion_threshold", "delta_alpha", "frame_alpha", "frame_height", @@ -33,6 +35,7 @@ const motion: SectionConfigOverrides = { "enabled", "threshold", "lightning_threshold", + "skip_motion_threshold", "improve_contrast", "contour_area", "delta_alpha", diff --git a/web/src/types/frigateConfig.ts b/web/src/types/frigateConfig.ts index dc3554940..d49368846 100644 --- a/web/src/types/frigateConfig.ts +++ b/web/src/types/frigateConfig.ts @@ -106,6 +106,7 @@ export interface CameraConfig { frame_height: number; improve_contrast: boolean; lightning_threshold: number; + skip_motion_threshold: number; mask: { [maskId: string]: { friendly_name?: string;