diff --git a/src/store/ChartAdapterStore.ts b/src/store/ChartAdapterStore.ts index c4fb827f4..6920cfe0b 100644 --- a/src/store/ChartAdapterStore.ts +++ b/src/store/ChartAdapterStore.ts @@ -261,7 +261,7 @@ export default class ChartAdapterStore { } if (e.touches.length > 1) { this.touchValues = { multiTouch: true }; - this.touchValues.touchIds = Array.from(e.touches).map(t => t.identifier); + this.touchValues.touchIds = Array.from(e.touches).map(touch => touch.identifier); return; }