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

jleroux 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 976cef7  Fixed: Label issue on List Companies page (OFBIZ-12023)
976cef7 is described below

commit 976cef7fa04a2aa144c994131eab0ce3f02fc2c7
Author: Jacques Le Roux <[email protected]>
AuthorDate: Mon Nov 30 11:59:47 2020 +0100

    Fixed: Label issue on List Companies page (OFBIZ-12023)
    
    Navigate to URL: 'accounting/control/ListCompanies'
    Under the companies list, the last column has button for import export.
    The System is not showing proper label.
    
    This issue is occurring due to the hyperlink title is not supporting 
character
    encoding for special characters. Please track progress under OFBIZ-12026.
    
    Thanks: Lalit Dashora for report, sourabh jain for patch, Daniel Watford 
for test
---
 applications/accounting/widget/GlSetupForms.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/applications/accounting/widget/GlSetupForms.xml 
b/applications/accounting/widget/GlSetupForms.xml
index ef8e1ec..f4a66e3 100644
--- a/applications/accounting/widget/GlSetupForms.xml
+++ b/applications/accounting/widget/GlSetupForms.xml
@@ -40,7 +40,7 @@ under the License.
             </hyperlink>
         </field>
         <field name="importexport" title=" " use-when="hasBasicPermission" 
widget-style="buttontext">
-            <hyperlink description="${uiLabelMap.CommonImportExport}" 
target="ImportExport">
+            <hyperlink description="${uiLabelMap.CommonImportExport}" 
target="ImportExport" target-type="plain">
                 <parameter param-name="organizationPartyId" 
from-field="partyId"/>
             </hyperlink>
         </field>

Reply via email to