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

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


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

commit 6bf18a2337a5b92a4d28899f1e188e00ca6783d9
Author: MLeila <[email protected]>
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 8ce8fd76f8..8c85975df1 100644
--- a/themes/common-theme/template/macro/HtmlFormMacroLibrary.ftl
+++ b/themes/common-theme/template/macro/HtmlFormMacroLibrary.ftl
@@ -451,7 +451,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