[ofbiz-framework] branch release18.12 updated: Fixed: Label issue on List Companies page (OFBIZ-12023)

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

[ofbiz-framework] branch release18.12 updated: Fixed: Label issue on List Companies page (OFBIZ-12023)

jleroux@apache.org
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 9f4038f  Fixed: Label issue on List Companies page (OFBIZ-12023)
9f4038f is described below

commit 9f4038f4d58e4345436f96d93c4a6743df020d5f
Author: Jacques Le Roux <[hidden email]>
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 de8f098..9e50eda 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>