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.

style: show µs for sub-millisecond times

0.27ms → 270µs

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

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

zzstoatzz bb767e79 53f1c240

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