Skip to content

Commit

Permalink
Added Fix in openmrsSearch.js for EMPT64
Browse files Browse the repository at this point in the history
Remove Extra <h1> tags
  • Loading branch information
Parth59 committed Mar 13, 2021
1 parent 7dc3345 commit 594c869
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion omod/src/main/webapp/admin/person/relationshipTypeForm.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
}
</script>
<h1>Nata</h1>

<h2><openmrs:message code="RelationshipType.title"/></h2>
<spring:hasBindErrors name="relationshipType">
<openmrs_tag:errorNotify errors="${errors}" />
Expand Down
2 changes: 1 addition & 1 deletion omod/src/main/webapp/admin/programs/conversionForm.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<td><openmrs:message code="Program.conversion.concept"/>:<span class="required">*</span></td>
<td>
<spring:bind path="conversion.concept">
<openmrs:fieldGen type="org.openmrs.Concept" formFieldName="concept" val="<c:out value='${status.editor.value}' />" parameters="" />
<openmrs:fieldGen type="org.openmrs.Concept" formFieldName="concept" val="${status.editor.value}" parameters="" />
<c:if test="${status.errorMessage != ''}"><span class="error">${status.errorMessage}</span></c:if>
</spring:bind>
</td>
Expand Down
1 change: 0 additions & 1 deletion omod/src/main/webapp/admin/provider/index.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@


<br/><br/>
<h1>Bye bye</h1>

<div>
<b class="boxHeader"><openmrs:message code="Provider.find"/></b>
Expand Down
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 594c869

Please sign in to comment.