Skip to content

Commit

Permalink
Fix saving SR onto one series (#269)
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesAPetts committed May 20, 2022
1 parent 7da0083 commit eed2170
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/adapters/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dcmjs",
"version": "0.11.0",
"version": "0.23.0",
"description": "Javascript implementation of DICOM manipulation",
"main": "build/dcmjs.js",
"module": "build/dcmjs.es.js",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ export default class TID1500MeasurementReport {

if (derivationSourceDatasets.length === 1) {
// If there is only one derivationSourceDataset, use it.
derivationSourceDataset[0];
derivationSourceDataset = derivationSourceDatasets[0];
} else {
const SeriesInstanceUID =
sopInstanceUIDsToSeriesInstanceUIDMap[
Expand Down

0 comments on commit eed2170

Please sign in to comment.