update deps & mqtt config

This commit is contained in:
Sacha Weatherstone
2024-03-16 15:17:24 +10:00
parent 8ea27c4794
commit 6113924e46
4 changed files with 576 additions and 689 deletions

View File

@@ -122,6 +122,45 @@ export const MQTT = (): JSX.Element => {
},
],
},
{
type: "toggle",
name: "mapReportingEnabled",
label: "Map Reporting Enabled",
description: "Enable or disable map reporting",
disabledBy: [
{
fieldName: "enabled",
},
],
},
{
type: "number",
name: "mapReportSettings.publishIntervalSecs",
label: "Map Report Publish Interval (s)",
description: "Interval in seconds to publish map reports",
disabledBy: [
{
fieldName: "enabled",
},
{
fieldName: "mapReportingEnabled",
},
],
},
{
type: "number",
name: "mapReportSettings.positionPrecision",
label: "Position Precision",
description: "Precision of the position",
disabledBy: [
{
fieldName: "enabled",
},
{
fieldName: "mapReportingEnabled",
},
],
},
],
},
]}