Skip to content

Commit

Permalink
Fix for 3.1.2.5 (#192)
Browse files Browse the repository at this point in the history
  • Loading branch information
mseaton authored Jun 8, 2024
1 parent 16bab70 commit 559462c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions omod/src/main/webapp/admin/concepts/conceptProposalForm.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
</c:if>
<tr>
<th><openmrs:message code="ConceptProposal.originalText"/></th>
<td>${conceptProposal.originalText}</td>
<td><c:out value="${conceptProposal.originalText}"/></td>
</tr>
<tr>
<th></th>
Expand Down Expand Up @@ -158,7 +158,7 @@
<th><openmrs:message code="ConceptProposal.finalText"/></th>
<td>
<spring:bind path="conceptProposal.finalText">
<input type="text" name="${status.expression}" id="finalText" value="<c:if test="${(status.value == null || status.value == '') && conceptProposal.mappedConcept == null}">${conceptProposal.originalText} </c:if><c:if test="${status.value != ''}">${status.value}</c:if>" size="50" />
<input type="text" name="${status.expression}" id="finalText" value="<c:if test="${(status.value == null || status.value == '') && conceptProposal.mappedConcept == null}"><c:out value="${conceptProposal.originalText}"/> </c:if><c:if test="${status.value != ''}">${status.value}</c:if>" size="50" />
<c:if test="${status.errorMessage != ''}"><span class="error">${status.errorMessage}</span></c:if>
</spring:bind>
</td>
Expand Down

0 comments on commit 559462c

Please sign in to comment.