Fix typo in study date filtering for QIDO

This commit is contained in:
Erik Ziegler 2017-06-15 12:42:54 +02:00
parent 351a1c2184
commit 95533c785b

View File

@ -42,7 +42,7 @@ function filterToQIDOURL(server, filter) {
};
// build the StudyDate range parameter
if (filter.studyDateFrom || filter.sutydDateTo) {
if (filter.studyDateFrom || filter.studyDateTo) {
var date = "".concat(dateToString(new Date(filter.studyDateFrom)), "-", dateToString(new Date(filter.studyDateTo)));
parameters.StudyDate = date;
}