LT-207: Case insensitive for Modality filtering

This commit is contained in:
Aysel Afsar 2016-03-11 13:11:26 -05:00
parent 2e4082c4e7
commit d483f2ae68

View File

@ -78,7 +78,7 @@ function replaceUndefinedColumnValue(text) {
if (text === undefined || text === 'undefined') {
return '';
} else {
return text;
return text.toUpperCase();
}
}