fix: include rtt in title

This commit is contained in:
əlemi 2024-12-01 04:29:09 +01:00
parent 7ae7c1b5c6
commit 305622811a
Signed by: alemi
GPG key ID: A4895B84D311642C

View file

@ -61,7 +61,7 @@ function cell(timestamp, rtt) {
if (rtt === null) { if (rtt === null) {
return `<span class="cell empty" title="${d}"></span>`; return `<span class="cell empty" title="${d}"></span>`;
} else { } else {
return `<span class="cell" title="${d}">${rtt}</span>`; return `<span class="cell" title="${rtt}ms -- ${d}">${rtt}</span>`;
} }
} }