fix(ohif-cornerstone-extension): Handle undefined sopClassUids

Bump ohif-cornerstone-extension to 0.0.22
This commit is contained in:
Evren Ozkan 2019-03-08 08:55:59 -05:00
parent 19eeb07f0b
commit ae4fa90e99
3 changed files with 7 additions and 7 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "ohif-cornerstone-extension", "name": "ohif-cornerstone-extension",
"version": "0.0.21", "version": "0.0.22",
"description": "OHIF extension for Cornerstone", "description": "OHIF extension for Cornerstone",
"author": "OHIF", "author": "OHIF",
"license": "MIT", "license": "MIT",

View File

@ -167,13 +167,13 @@ class OHIFCornerstoneViewport extends Component {
frameIndex frameIndex
} = displaySet; } = displaySet;
if (sopClassUids.length > 1) { if (sopClassUids && sopClassUids.length > 1) {
console.warn( console.warn(
'More than one SOPClassUid in the same series is not yet supported.' 'More than one SOPClassUid in the same series is not yet supported.'
); );
} }
const sopClassUid = sopClassUids[0]; const sopClassUid = sopClassUids && sopClassUids[0];
this.getViewportData( this.getViewportData(
studies, studies,

View File

@ -4418,10 +4418,10 @@ randomfill@^1.0.3:
randombytes "^2.0.5" randombytes "^2.0.5"
safe-buffer "^5.1.0" safe-buffer "^5.1.0"
react-cornerstone-viewport@^0.1.20: react-cornerstone-viewport@^0.1.23:
version "0.1.20" version "0.1.23"
resolved "https://registry.yarnpkg.com/react-cornerstone-viewport/-/react-cornerstone-viewport-0.1.20.tgz#90e369a48e3f47dd5da69d42f0c8ee7e87e81543" resolved "https://registry.yarnpkg.com/react-cornerstone-viewport/-/react-cornerstone-viewport-0.1.23.tgz#4f065c4d1a5e721a45b819d1b7e94489af69b5c1"
integrity sha512-SbaSjCAVFpQoUUXZ6d5F5QwKrP66zRJ4mN7JXPGyiL6+/m0jGkaBVci6pftkth66Lu5HRlCZUS8nh0plONPUtA== integrity sha512-uukvBIrtvExY0oOo6d/79CZRrALtU2Pq8NBovYVvD02Hg40yYtGYLZ2AnbjbQEtsf0LjpLhcfT/QU6ZOB2v8rw==
dependencies: dependencies:
lodash.debounce "^4.0.8" lodash.debounce "^4.0.8"
moment "^2.23.0" moment "^2.23.0"