search for standard sites pub-search.waow.tech
search zig blog atproto
11
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: show more precision in timing display

- >=10ms: whole ms
- 1-10ms: 1 decimal
- <1ms: 2 decimals

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

zzstoatzz 53f1c240 af2e0e7f

+3 -1
+3 -1
site/dashboard.js
··· 79 79 80 80 function formatMs(ms) { 81 81 if (ms >= 1000) return (ms / 1000).toFixed(1) + 's'; 82 - return ms.toFixed(0) + 'ms'; 82 + if (ms >= 10) return ms.toFixed(0) + 'ms'; 83 + if (ms >= 1) return ms.toFixed(1) + 'ms'; 84 + return ms.toFixed(2) + 'ms'; 83 85 } 84 86 85 87 function renderTiming(timing) {