We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb2116e commit 9e1d094Copy full SHA for 9e1d094
2 files changed
src/components/panels/main/ConnectionPanel.tsx
@@ -96,7 +96,7 @@ export const ConnectionPanel = memo(
96
);
97
const [manualConfig, setManualConfig] = usePersistedState<string>(
98
"adb_config",
99
- "",
+ "{}",
100
101
const [manualName, setManualName] = usePersistedState<string>(
102
"adb_name",
src/data/updateLogs.ts
@@ -114,7 +114,10 @@ export const updateLogs: UpdateLogItem[] = [
114
"还原连接线路径时会自动进行 external 节点的就近连接重计算",
115
"优化资源健康检查相关术语",
116
],
117
- fixes: ["修复 on_error 无法连接至自身的问题"],
+ fixes: [
118
+ "修复 on_error 无法连接至自身的问题",
119
+ "修复 adb 不填写 extra 无法连接的问题",
120
+ ],
121
},
122
123
{
0 commit comments