fix: include rtt in title
This commit is contained in:
parent
7ae7c1b5c6
commit
305622811a
1 changed files with 1 additions and 1 deletions
|
@ -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>`;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue