@cornerstonejs/tools 1.14.1 → 1.14.3

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/tools",
3
- "version": "1.14.1",
3
+ "version": "1.14.3",
4
4
  "description": "Cornerstone3D Tools",
5
5
  "main": "dist/umd/index.js",
6
6
  "types": "dist/esm/index.d.ts",
@@ -29,7 +29,7 @@
29
29
  "webpack:watch": "webpack --mode development --progress --watch --config ./.webpack/webpack.dev.js"
30
30
  },
31
31
  "dependencies": {
32
- "@cornerstonejs/core": "^1.14.1",
32
+ "@cornerstonejs/core": "^1.14.3",
33
33
  "lodash.clonedeep": "4.5.0",
34
34
  "lodash.get": "^4.4.2"
35
35
  },
@@ -52,5 +52,5 @@
52
52
  "type": "individual",
53
53
  "url": "https://ohif.org/donate"
54
54
  },
55
- "gitHead": "bdeea11ea45db9050ebc678421c409406d7357c7"
55
+ "gitHead": "a41ad226c52019627d584142eefc7b412022a3e8"
56
56
  }
@@ -808,7 +808,7 @@ class AngleTool extends AnnotationTool {
808
808
  );
809
809
 
810
810
  cachedStats[targetId] = {
811
- angle,
811
+ angle: isNaN(angle) ? 'Incomplete Angle' : angle,
812
812
  };
813
813
  }
814
814