Fixed broken values in viewportOverlay after metaData renaming

This commit is contained in:
Erik Ziegler 2015-11-20 15:27:42 +01:00
parent 4a482c1d12
commit bfe6b80e27

View File

@ -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');