From 9fa24569ea552c1d2a47a7fec66001e60c91cd81 Mon Sep 17 00:00:00 2001 From: Ross Date: Wed, 6 Apr 2022 19:40:33 +0100 Subject: [PATCH] . --- atlas/templates/atlas/series_form.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/atlas/templates/atlas/series_form.html b/atlas/templates/atlas/series_form.html index dfb1a5ac..66d2e8c1 100755 --- a/atlas/templates/atlas/series_form.html +++ b/atlas/templates/atlas/series_form.html @@ -298,10 +298,10 @@ // We need to setup a try/catch block because parseDicom will throw an exception // if you attempt to parse a non dicom part 10 file (or one that is corrupted) try { - cosole.log("bytearray", byteArray) + console.log("bytearray", byteArray) // parse byteArray into a DataSet object using the parseDicom library var dataSet = dicomParser.parseDicom(byteArray); - cosole.log("ds", dataSet) + console.log("ds", dataSet) // dataSet contains the parsed elements. Each element is available via a property // in the dataSet.elements object. The property name is based on the elements group