Skip to content

Commit

Permalink
Added Fix in openmrsSearch.js for EMPT64
Browse files Browse the repository at this point in the history
  • Loading branch information
Parth59 committed Mar 13, 2021
1 parent 7dc3345 commit 4bc7d86
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -851,14 +851,15 @@ function OpenmrsSearch(div, showIncludeVoided, searchHandler, selectionHandler,
attributeValue = rowData.attributes[a.name];
if(attributeValue == null)
attributeValue = '';

rRowData.push(attributeValue);
});
}

for (k in rRowData)
{
rRowData[k] = $j("<div>").text(rRowData[k]).html();
}
return rRowData;
},

_fireEvent: function(eventType, data) {
//TODO also pass 'this'
},
Expand Down

0 comments on commit 4bc7d86

Please sign in to comment.