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

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


The following commit(s) were added to refs/heads/release18.12 by this push:
     new 4d1000c  Fixed: Single product tile is displayed on one row in product 
search. (OFBIZ-12045) (#245)
4d1000c is described below

commit 4d1000c587995ef7f53c469acb8dff97f6b72e69
Author: Saurabh Dixit <[email protected]>
AuthorDate: Mon Nov 30 15:44:06 2020 +0530

    Fixed: Single product tile is displayed on one row in product search. 
(OFBIZ-12045) (#245)
    
    Cause: Wrong use of bootstrap grid classes.
    Fix: Used row class as a parent to col-* class while rendering the products.
---
 applications/order/template/entry/catalog/KeywordSearch.ftl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/applications/order/template/entry/catalog/KeywordSearch.ftl 
b/applications/order/template/entry/catalog/KeywordSearch.ftl
index d76d1cd..9ed2034 100644
--- a/applications/order/template/entry/catalog/KeywordSearch.ftl
+++ b/applications/order/template/entry/catalog/KeywordSearch.ftl
@@ -60,7 +60,7 @@ under the License.
     </#macro>
 
     <@paginationControls/>
-    <div class="productsummary-container">
+    <div class="productsummary-container row">
         <#list productIds as productId> <#-- note that there is no boundary 
range because that is being done before the list is put in the content -->
             ${setRequestAttribute("optProductId", productId)}
             ${setRequestAttribute("listIndex", productId_index)}

Reply via email to