From 07bdcf67034f24e28d63a8a450ff5ea6d90f9b36 Mon Sep 17 00:00:00 2001 From: riley Date: Tue, 19 Sep 2023 23:23:45 -0400 Subject: [PATCH] Minor Title Changes --- luasrc/model/cbi/frigate.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/luasrc/model/cbi/frigate.lua b/luasrc/model/cbi/frigate.lua index 63a0809..f2ce200 100644 --- a/luasrc/model/cbi/frigate.lua +++ b/luasrc/model/cbi/frigate.lua @@ -15,7 +15,7 @@ s = m:section(SimpleSection, translate("Container Status")) s:append(Template("frigate/status")) -- General Frigate Docker setup -s = m:section(NamedSection, "docker", "frigate_config", "General settings for Docker") +s = m:section(NamedSection, "docker", "frigate_config", "Docker Configuration") 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(NamedSection, "mqtt", "frigate_config", "Settings for MQTT") +s = m:section(NamedSection, "mqtt", "frigate_config", "MQTT Configuration") s.addremove = false s.anonymous = true @@ -46,7 +46,7 @@ o = s:option(Value, "host", "MQTT Host") o.default = "mqtt.server.com" -- Detectors Configuration -s = m:section(NamedSection, "detectors", "frigate_config", "Settings for Detectors") +s = m:section(NamedSection, "detectors", "frigate_config", "TPU Configuration") s.addremove = false s.anonymous = true @@ -60,7 +60,7 @@ o = s:option(Value, "device", "Device") o.default = "usb" -- Camera Configuration -s = m:section(TypedSection, "camera_config", "Camera Configuration", "Settings for Cameras") +s = m:section(TypedSection, "camera_config", "Camera Configuration") s.addremove = true s.anonymous = true s.novaluetext = "There are no cameras configured yet."