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: add y-axis label to latency chart

zzstoatzz ddf97932 6142e567

+13
+7
site/dashboard.css
··· 125 125 width: 100%; 126 126 height: 100%; 127 127 } 128 + .latency-y-label { 129 + position: absolute; 130 + top: 0; 131 + left: 0; 132 + font-size: 9px; 133 + color: #555; 134 + } 128 135 .latency-legend { 129 136 display: flex; 130 137 gap: 1rem;
+6
site/dashboard.js
··· 184 184 ctx.stroke(); 185 185 }); 186 186 187 + // y-axis label (inside chart div for positioning) 188 + const yLabel = document.createElement('div'); 189 + yLabel.className = 'latency-y-label'; 190 + yLabel.textContent = formatMs(maxVal); 191 + chartDiv.appendChild(yLabel); 192 + 187 193 // legend 188 194 const legend = document.createElement('div'); 189 195 legend.className = 'latency-legend';