From bc43c4c9c5d32702e848917dd5dc947fc79a7299 Mon Sep 17 00:00:00 2001 From: Michael Pearson Date: Sat, 23 Apr 2022 13:50:58 +1000 Subject: [PATCH] Default to true --- frigate/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/config.py b/frigate/config.py index fb7c2fa9c..239242f03 100644 --- a/frigate/config.py +++ b/frigate/config.py @@ -47,7 +47,7 @@ class DetectorConfig(FrigateBaseModel): class UIConfig(FrigateBaseModel): use_experimental: bool = Field(default=False, title="Experimental UI") show_confirmation_prompts: bool = Field( - default=False, title="Show confirmation prompts" + default=True, title="Show confirmation prompts" )