setInstances()

in src/dicomImageSequencer.js [62:70]


  setInstances(instances) {
    this.instances = instances;

    // Sort instances to ensure correct order of rendering
    this.instances.sort((a, b) => {
      return a[DICOM_TAGS.INSTANCE_NUMBER].Value[0] -
          b[DICOM_TAGS.INSTANCE_NUMBER].Value[0];
    });
  }