fix(dashboard): pass missing args to encryptionPct in refresh() #124
Reference in New Issue
Block a user
Delete Branch "fix/dashboard-encryption-pct-args"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
eb5ea3bgeneralisedencryptionPctfrom(transport)to(data, encryptedKeys, allKeys)and updatedrenderTransport+renderUpstreamWire, but missed the call insiderender()that computes the inline~N/s · M% encQPS tag.allKeysundefined, the first.reduce()threwTypeError. The rendertry/catchsilently downgraded the whole dashboard to "disconnected" — every panel left empty even though/statsreturned real data.console.error(err)inside the catch so the next silent-failure regression lands in DevTools instead of behind a source dive.Test plan
cargo fmt --check/cargo clippy -D warnings/cargo audit/cargo test(344 pass)Diff is two lines: the call-site fix and the
console.errorline.