Skip to content

Commit

Permalink
Merge pull request #116 from ddRPB/115-parse-properties-for-mr-modali…
Browse files Browse the repository at this point in the history
…ties

feat(): DicomFile.js - parse SeriesDescription tag on DICOM files wit…
  • Loading branch information
kursawero authored May 29, 2024
2 parents 49c09a5 + ea69f81 commit cb36ad8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/model/DicomFile.js
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,9 @@ export default class DicomFile {
case "x0020000e":
resultMap.set("SeriesInstanceUID", this._getString(element));
break;
case "x0008103e":
resultMap.set("SeriesDescription", this._getString(element));
break;
}
}
}
Expand Down

0 comments on commit cb36ad8

Please sign in to comment.