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 8ec0c8c commit 11d255fCopy full SHA for 11d255f
site/frontend/src/pages/compare/compile/table/benchmark-detail.vue
@@ -222,7 +222,8 @@ async function renderGraph(
222
223
function getGraphTitle() {
224
const {start, end, date} = graphRange.value;
225
- const msg = `${DAY_RANGE} day history`;
+ const days = daysBetweenDates(new Date(start), new Date(end));
226
+ const msg = `${days} day history`;
227
if (date !== null) {
228
return `${msg} (${start} → ${end})`;
229
} else {
0 commit comments