We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74d70ed commit 1691fbdCopy full SHA for 1691fbd
site/static/compare.html
@@ -1004,8 +1004,8 @@ <h2>Comparing <span id="stat-header">{{stat}}</span> between <span id="before">{
1004
},
1005
graphLink(commit, stat, testCase) {
1006
let date = new Date(commit.date);
1007
- // Move to `two weeks ago` to display history of the test case
1008
- date.setUTCDate(date.getUTCDate() - 14);
+ // Move to `30 days ago` to display history of the test case
+ date.setUTCDate(date.getUTCDate() - 30);
1009
let year = date.getUTCFullYear();
1010
let month = (date.getUTCMonth() + 1).toString().padStart(2, '0');
1011
let day = date.getUTCDate().toString().padStart(2, '0');
0 commit comments