We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8bad6cb commit 8e6cbd4Copy full SHA for 8e6cbd4
ui/app/common/displaycontrols/observation/directives/bahmniObservation.js
@@ -19,7 +19,8 @@ angular.module('bahmni.common.displaycontrol.observation')
19
if ($scope.config.conceptNames) {
20
observations = _.filter(observations, function (observation) {
21
return _.some($scope.config.conceptNames, function (conceptName) {
22
- return _.toLower(conceptName) === _.toLower(_.get(observation, 'concept.name'));
+ return (_.toLower(conceptName) === _.toLower(_.get(observation, 'concept.name'))
23
+ || _.toLower(conceptName) === _.toLower(_.get(observation, 'conceptFSN')));
24
});
25
26
if ($scope.config.customSortNeeded && $scope.config.conceptNames) {
0 commit comments