diff --git a/Web App/web/src/views/Charging.vue b/Web App/web/src/views/Charging.vue index 7c1c927..92e2b11 100644 --- a/Web App/web/src/views/Charging.vue +++ b/Web App/web/src/views/Charging.vue @@ -602,7 +602,10 @@ const MQTT_SETTING_BLOCKS = [ id: "charging", title: "blockCharging", fields: [ - { key: "maxCurrentA", at: "settings.maxCurrentA", label: "maxCurrentSet", type: "number", min: LIMIT_FLOOR, max: null, step: 1, unit: "A" }, + // A slider rather than a box, like the control card had and the Modbus + // settings card still has: it is the same value they set, and a ceiling + // is a thing you slide between two known ends rather than type. + { key: "maxCurrentA", at: "settings.maxCurrentA", label: "maxCurrentSet", type: "slider", min: LIMIT_FLOOR, max: null, step: 1, unit: "A", hint: "limitFloorHint" }, { key: "autoStart", at: "settings.autoStart", label: "autoStart", type: "switch" }, { key: "randomDelay", at: "settings.randomDelay", label: "randomDelay", type: "switch" }, { key: "plugLock", at: "settings.plugLock", label: "plugLock", type: "switch" }, @@ -2013,14 +2016,18 @@ onMounted(async () => { - -
+ +
@@ -2415,11 +2422,29 @@ onMounted(async () => {

{{ t(`charging.modbus.${block.title}`) }}

-
+