From c21660bfe5f0c968abb543a003d652c4842d2449 Mon Sep 17 00:00:00 2001 From: riley Date: Mon, 18 Sep 2023 20:19:22 -0400 Subject: [PATCH] Fixed triplicated docker and MQTT config sections --- luasrc/model/cbi/frigate.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/luasrc/model/cbi/frigate.lua b/luasrc/model/cbi/frigate.lua index a526cc6..e600665 100644 --- a/luasrc/model/cbi/frigate.lua +++ b/luasrc/model/cbi/frigate.lua @@ -15,7 +15,7 @@ s = m:section(SimpleSection, translate("Service Status"), translate("frigate sta s:append(Template("frigate/status")) -- General Frigate Docker setup -s = m:section(TypedSection, "frigate_config", "Docker Configuration", "General settings for Docker") +s = m:section(NamedSection, "frigate_config", "Docker Configuration", "General settings for Docker") s.addremove = false s.anonymous = true @@ -35,7 +35,7 @@ o = s:option(Value, "storage", "Storage Path") o.default = "./frigate/storage" -- MQTT Configuration -s = m:section(TypedSection, "frigate_config", "MQTT Configuration", "Settings for MQTT") +s = m:section(NamedSection, "frigate_config", "MQTT Configuration", "Settings for MQTT") s.addremove = false s.anonymous = true