diff OrthancServer/OrthancExplorer/explorer.js @ 4525:8262ffb393ff

The numbering of sequences in Orthanc Explorer now uses the DICOM convention (starts at 1)
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 23 Feb 2021 15:19:40 +0100
parents 22abc6851191
children 569d9ef165b1
line wrap: on
line diff
--- a/OrthancServer/OrthancExplorer/explorer.js	Tue Feb 23 15:05:55 2021 +0100
+++ b/OrthancServer/OrthancExplorer/explorer.js	Tue Feb 23 15:19:40 2021 +0100
@@ -856,7 +856,7 @@
         c = [];
         for (var j = 0; j < dicom[i]["Value"].length; j++) {
           c.push({
-            label: 'Item ' + j,
+            label: 'Item ' + (j + 1),
             children: ConvertForTree(dicom[i]["Value"][j])
           });
         }