feat: 支持查看服务器密码

This commit is contained in:
2026-07-19 19:42:48 +08:00
parent 4b01ae9898
commit 2682c0a1d6
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -156,7 +156,7 @@ class MqttManager {
getServers() {
return Array.from(this.servers.values()).map((s) => ({
...s,
password: s.password ? '******' : '',
password: s.password || '',
}));
}