Skip to content

Commit 3bcd3bb

Browse files
committed
add missing space to tooltip contents
1 parent a0964ba commit 3bcd3bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/static/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@
131131
let trailer = "";
132132
if (absoluteMode) {
133133
let pctSinceStart = (((u.data[seriesIdx][dataIdx] - u.data[seriesIdx][0]) / u.data[seriesIdx][0]) * 100).toFixed(2);
134-
trailer = uPlot.fmtNum(u.data[seriesIdx][dataIdx]) + "(" +
134+
trailer = uPlot.fmtNum(u.data[seriesIdx][dataIdx]) + " (" +
135135
pctSinceStart + "% since start)";
136136
} else {
137137
trailer = uPlot.fmtNum(u.data[seriesIdx][dataIdx]) + "% since start";

0 commit comments

Comments
 (0)