diff --git a/atlas/models.py b/atlas/models.py
index e7ce3d89..2d0ef81e 100644
--- a/atlas/models.py
+++ b/atlas/models.py
@@ -612,13 +612,11 @@ class Series(SeriesBase):
return series_json
- def get_ohif_dicom_json(self, case_title_as_patient_name = True):
+ def get_ohif_dicom_json(self):
series_json = []
series_json.append(self.get_series_dicom_json())
patient_name = ""
- if case_title_as_patient_name:
- patient_name = self.title
return {
"studies": [
diff --git a/atlas/templates/atlas/collection_viva.html b/atlas/templates/atlas/collection_viva.html
index 97786b8d..c8b8908a 100644
--- a/atlas/templates/atlas/collection_viva.html
+++ b/atlas/templates/atlas/collection_viva.html
@@ -26,7 +26,7 @@
show