diff --git a/ts/graphs/ease.ts b/ts/graphs/ease.ts index 09103ddf2..cf231d533 100644 --- a/ts/graphs/ease.ts +++ b/ts/graphs/ease.ts @@ -38,7 +38,7 @@ function makeQuery(start: number, end: number): string { } const fromQuery = `"prop:ease>=${start / 100}"`; - const tillQuery = `"prop:ease<${end / 100}"`; + const tillQuery = `"prop:ease<${(end + 1) / 100}"`; return `${fromQuery} AND ${tillQuery}`; }