This is an automated email from the ASF dual-hosted git repository.

mleila pushed a commit to branch release24.09
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git


The following commit(s) were added to refs/heads/release24.09 by this push:
     new c075529b5a Fixed: equals option not visible anymore in text find 
(OFBIZ-12678)
c075529b5a is described below

commit c075529b5a7ffaf7728f45db79939c5d3335a6d9
Author: MLeila <mle...@apache.org>
AuthorDate: Wed Nov 27 10:27:19 2024 +0100

    Fixed: equals option not visible anymore in text find (OFBIZ-12678)
    
    This closes the select tag to allow equals option to be displayed
    correctly
---
 themes/common-theme/template/macro/HtmlFormMacroLibrary.ftl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/themes/common-theme/template/macro/HtmlFormMacroLibrary.ftl 
b/themes/common-theme/template/macro/HtmlFormMacroLibrary.ftl
index 154f67c3f2..af61c48a40 100644
--- a/themes/common-theme/template/macro/HtmlFormMacroLibrary.ftl
+++ b/themes/common-theme/template/macro/HtmlFormMacroLibrary.ftl
@@ -440,7 +440,7 @@ under the License.
     <input type="hidden" name="${name}_grp" value="${conditionGroup}" 
<@renderDisabled disabled />/>
   </#if>
   <#if opEquals?has_content>
-    <select <@renderDisabled disabled /> <#if 
name?has_content>name="${name}_op"</#if> class="selectBox"<#rt/>
+    <select <@renderDisabled disabled /> <#if 
name?has_content>name="${name}_op"</#if> class="selectBox"><#rt/>
       <option value="equals"<#if defaultOption=="equals"> 
selected="selected"</#if>>${opEquals}</option><#rt/>
       <option value="like"<#if defaultOption=="like"> 
selected="selected"</#if>>${opBeginsWith}</option><#rt/>
       <option value="contains"<#if defaultOption=="contains"> 
selected="selected"</#if>>${opContains}</option><#rt/>

Reply via email to