Make MQTT input a password field

This commit is contained in:
Ingo Theiss 2022-08-08 07:15:49 +02:00 committed by Thomas Basler
parent 26268479fb
commit 8b89acd039

View File

@ -74,7 +74,7 @@
<div class="row mb-3">
<label for="inputPassword" class="col-sm-2 col-form-label">Password:</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="inputPassword" maxlength="32"
<input type="password" class="form-control" id="inputPassword" maxlength="32"
placeholder="Password, leave empty for anonymous connection"
v-model="mqttConfigList.mqtt_password" />
</div>
@ -290,4 +290,4 @@ export default defineComponent({
},
},
});
</script>
</script>