From 71e0ead49004a24d5885375ef6f7b4bffc098296 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Sun, 12 Oct 2025 18:21:23 -0500 Subject: [PATCH] ensure test is invalidated if stream is changed --- web/src/components/settings/Step2StreamConfig.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/web/src/components/settings/Step2StreamConfig.tsx b/web/src/components/settings/Step2StreamConfig.tsx index c108fed35..d8d49ce48 100644 --- a/web/src/components/settings/Step2StreamConfig.tsx +++ b/web/src/components/settings/Step2StreamConfig.tsx @@ -284,7 +284,10 @@ export default function Step2StreamConfig({ - updateStream(stream.id, { url: e.target.value }) + updateStream(stream.id, { + url: e.target.value, + testResult: undefined, + }) } className="h-8 flex-1" placeholder={t("cameraWizard.step2.streamUrlPlaceholder")}