hellfire 0.17.7 → 0.17.8

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/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ## [0.17.8](http://10.16.100.57/diffusion/115/paladin/compare/v0.17.7...v0.17.8) (2021-12-30)
6
+
7
+
8
+
5
9
  ## [0.17.7](http://10.16.100.57/diffusion/115/paladin/compare/v0.17.6...v0.17.7) (2021-12-28)
6
10
 
7
11
 
package/dist/index.js CHANGED
@@ -51709,8 +51709,11 @@ var DicomView = /*#__PURE__*/function (_Component) {
51709
51709
  linkArr = lodash$1.uniq(linkArr);
51710
51710
  lodash$1.forEach(linkArr, function (v) {
51711
51711
  var syncElement = getElement(v);
51712
- linkSynchronizer.add(syncElement);
51713
- linkScrollSynchronizer.add(syncElement);
51712
+
51713
+ if (syncElement) {
51714
+ linkSynchronizer.add(syncElement);
51715
+ linkScrollSynchronizer.add(syncElement);
51716
+ }
51714
51717
  });
51715
51718
  });
51716
51719
 
@@ -51722,7 +51725,10 @@ var DicomView = /*#__PURE__*/function (_Component) {
51722
51725
  linkArr = lodash$1.uniq(linkArr);
51723
51726
  lodash$1.forEach(linkArr, function (v) {
51724
51727
  var syncElement = getElement(v);
51725
- linkImageModeSynchronizer.add(syncElement);
51728
+
51729
+ if (syncElement) {
51730
+ linkImageModeSynchronizer.add(syncElement);
51731
+ }
51726
51732
  });
51727
51733
  });
51728
51734
 
@@ -52013,6 +52019,7 @@ var DicomView = /*#__PURE__*/function (_Component) {
52013
52019
  toolState[data.imageId] = data.value;
52014
52020
  cornerstoneTools.globalImageIdSpecificToolStateManager.restoreToolState(toolState);
52015
52021
  syncElement = getElement(data.index);
52022
+ if (syncElement) cornerstone.updateImage(syncElement);
52016
52023
  cornerstone.updateImage(syncElement);
52017
52024
  break;
52018
52025