fix: show lora info regardless of toggle state

This commit is contained in:
Will Miao
2026-09-02 11:38:30 +08:00
parent 34ca14d7fc
commit 49704d801c
+2 -2
View File
@@ -58,8 +58,8 @@ export async function updateConnectedLoraInfoNodes(node, selection) {
return;
}
// No selection or inactive — clear the display on all connected info nodes
if (!selection?.name || !selection?.active) {
// No selection — clear the display on all connected info nodes
if (!selection?.name) {
for (const infoNode of infoNodes) {
infoNode.__loraInfoReqId = (infoNode.__loraInfoReqId || 0) + 1;
if (typeof infoNode._setLoraInfo === "function") {