Commit c8789a6d authored by Eric Duminil's avatar Eric Duminil
Browse files

BUGFIX: Removing double default for MQTT

parent e1da5aea
Pipeline #8502 passed with stage
in 1 minute and 58 seconds
......@@ -100,7 +100,7 @@ namespace web_config {
IntTParameter<uint16_t> mqttIntervalParam =
Builder<IntTParameter<uint16_t>>("mqtt_interval").label("MQTT interval").defaultValue(MQTT_SENDING_INTERVAL).min(
0).step(1).defaultValue(300).placeholder("[s]").build();
0).step(1).placeholder("[s]").build();
CheckboxTParameter mqttEncryptionParam =
Builder<CheckboxTParameter>("mqtt_encryption").label("Encrypt MQTT?").defaultValue(MQTT_ENCRYPTED).build();
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment