@cornerstonejs/core 1.10.3 → 1.10.5

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": "@cornerstonejs/core",
3
- "version": "1.10.3",
3
+ "version": "1.10.5",
4
4
  "description": "",
5
5
  "main": "dist/umd/index.js",
6
6
  "types": "dist/esm/index.d.ts",
@@ -46,5 +46,5 @@
46
46
  "type": "individual",
47
47
  "url": "https://ohif.org/donate"
48
48
  },
49
- "gitHead": "eb344f5bb5dd2d6d26e19da57d62d724d6aeea90"
49
+ "gitHead": "be5f3c4fee4a9f3508b12b580b83420e6d09992a"
50
50
  }
@@ -307,7 +307,7 @@ class RequestPoolManager {
307
307
  const priorities = Object.keys(this.requestPool[type])
308
308
  .map(Number)
309
309
  .filter((priority) => this.requestPool[type][priority].length)
310
- .sort();
310
+ .sort((a, b) => a - b);
311
311
  return priorities;
312
312
  }
313
313