Export menu of issue navigator displays navigator.results.currentview.*
Platform notice: Server and Data Center only. This article only applies to Atlassian products on the Server and Data Center platforms.
Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.
*Except Fisheye and Crucible
Problem
When using the Export feature from the issue navigator, some menu items are not displayed correctly.
In the export menu, navigator.results.currentview.*
is displayed instead of the name of the export option (e.g. CSV (All fields) ), see example below :
Diagnosis
Diagnostic Steps
- Verify if the
JiraWebActionSupport.properties
file in$JIRA_install/atlassian-jira/WEB-INF/classes/com/atlassian/jira/web/action
has been modified.
Cause
Each name of the export option (menu item) is associated with a unique key and stored in JiraWebActionSupport.properties
file under $JIRA_install/atlassian-jira/WEB-INF/classes/com/atlassian/jira/web/action.
For example,
navigator.results.currentview.excel.csv.current = CSV (Current fields)
navigator.results.currentview.excel.csv.all = CSV (All fields)
It's a standard key-value pair file, if an entry is missing then the key will be displayed on the UI.
Resolution
Revert the modification made to the JiraWebActionSupport.properties
file by adding the missing key-value pair back.