@24i/bigscreen-sdk 1.0.10-alpha.2208 → 1.0.10-alpha.2209

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@24i/bigscreen-sdk",
3
- "version": "1.0.10-alpha.2208",
3
+ "version": "1.0.10-alpha.2209",
4
4
  "description": "SmartApps BIGscreen SDK monorepo",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -148,7 +148,7 @@ export class EdgeOffsetList<T extends Item<U>, U>
148
148
  const { edgeOffset } = this.props;
149
149
  const list = this.base.current!;
150
150
  list.index = index;
151
- if (list.index < this.controller.scrollIndex) {
151
+ if (list.index <= this.controller.scrollIndex) {
152
152
  this.controller.scroll(list.index < edgeOffset ? 0 : list.index - edgeOffset);
153
153
  }
154
154
  }