Fixed broken values in viewportOverlay after metaData renaming
This commit is contained in:
parent
4a482c1d12
commit
bfe6b80e27
@ -129,22 +129,22 @@ Template.viewportOverlay.helpers({
|
|||||||
return getPatient.call(this, 'id');
|
return getPatient.call(this, 'id');
|
||||||
},
|
},
|
||||||
studyDate : function() {
|
studyDate : function() {
|
||||||
return getStudy.call(this, 'date');
|
return getStudy.call(this, 'studyDate');
|
||||||
},
|
},
|
||||||
studyTime : function() {
|
studyTime : function() {
|
||||||
return getStudy.call(this, 'time');
|
return getStudy.call(this, 'studyTime');
|
||||||
},
|
},
|
||||||
studyDescription : function() {
|
studyDescription : function() {
|
||||||
return getStudy.call(this, 'description');
|
return getStudy.call(this, 'studyDescription');
|
||||||
},
|
},
|
||||||
seriesDescription : function() {
|
seriesDescription : function() {
|
||||||
return getSeries.call(this, 'description');
|
return getSeries.call(this, 'seriesDescription');
|
||||||
},
|
},
|
||||||
seriesNumber : function() {
|
seriesNumber : function() {
|
||||||
return getSeries.call(this, 'number');
|
return getSeries.call(this, 'seriesNumber');
|
||||||
},
|
},
|
||||||
imageNumber : function() {
|
imageNumber : function() {
|
||||||
return getInstance.call(this, 'number');
|
return getInstance.call(this, 'instanceNumber');
|
||||||
},
|
},
|
||||||
imageIndex : function() {
|
imageIndex : function() {
|
||||||
return getInstance.call(this, 'index');
|
return getInstance.call(this, 'index');
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user