summaryrefslogtreecommitdiff
path: root/website/app.js
diff options
context:
space:
mode:
authorbdistin <bdistin@gmail.com>2018-11-01 14:44:58 -0500
committerRyan Dahl <ry@tinyclouds.org>2018-11-01 13:52:27 -0700
commit6345b60ed8b784939c9fbad8148c3e98ba07a013 (patch)
tree376723ac8c73d96946970120462a38b608f4c9c1 /website/app.js
parentec17239f46fa8677975183e0ab4a0bc7adcff77e (diff)
clarify benchmark chart units
Currently, the Travis chart displays "time" as the y-label of the graph, when in fact the unit is in minutes. (makes this consistent with other y-labels being "seconds")
Diffstat (limited to 'website/app.js')
-rw-r--r--website/app.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/website/app.js b/website/app.js
index 375c6a54b..6bf5194b1 100644
--- a/website/app.js
+++ b/website/app.js
@@ -247,7 +247,7 @@ export async function drawChartsFromTravisData() {
prNumberList,
travisCompileTimeColumns,
viewPullRequestOnClick(prNumberList),
- "time",
+ "minutes",
formatSecsAsMins
);
}