Skip to content

Commit

Permalink
BAH-4053 | Fix. eslint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
mohan-13 committed Jul 30, 2024
1 parent 7d4d5ed commit f29d96a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/app/ot/helpers/surgicalAppointmentHelper.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ angular.module('bahmni.ot')
this.filterProvidersByName = function (providerNames, providers) {
if (!providerNames || providerNames.length === 0) {
return _.filter(providers, function (provider) {
return provider.person.display!="";
return provider.person.display != "";
});
}
var validProviderNames = _.filter(providerNames, function (providerName) {
Expand Down

0 comments on commit f29d96a

Please sign in to comment.