How to display in Jira the priority name next to the priority icon in the Column View

Still need help?

The Atlassian Community is here for you.

Ask the community

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

The information in this page relates to customizations in Jira. Consequently, Atlassian Support cannot guarantee to provide any support for the steps described on this page as customizations are not covered under Atlassian Support Offerings. Please be aware that this material is provided for your information only and that you use it at your own risk.

Also, please be aware that customizations done by directly modifying files are not included in the upgrade process. These modifications will need to be reapplied manually on the upgraded instance.

Summary

This article instructs how to display the priority name next to the priority icon in the Column View.

Environment

All versions of Jira Core 8.x and 9.x.


Solution

  1. Open the file <JIRA_INSTALL>/atlassian-jira/WEB-INF/classes/templates/jira/issue/field/priority-columnview.vm
  2. Modify the line below: 

    From:  

    <img src="$iconurl.get()" height="16" width="16" border="0" align="absmiddle" alt="$textutils.htmlEncode($priority.get().getNameTranslation(), false)" title="$textutils.htmlEncode($priority.get().getNameTranslation(), false) - $textutils.htmlEncode($!priority.get().getDescTranslation(), false)">
    

    To:   

     <img src="$iconurl.get()" height="16" width="16" border="0" align="absmiddle" alt="$textutils.htmlEncode($priority.get().getNameTranslation(), false)" title="$textutils.htmlEncode($priority.get().getNameTranslation(), false) - $textutils.htmlEncode($!priority.get().getDescTranslation(), false)"> $textutils.htmlEncode($!priority.get().nameTranslation, false) 
     
  3. Restart Jira. 
  4. Validate that the dashboard is showing the priority name next to the priority icon. Here is an example: 


Last modified on Apr 24, 2023

Was this helpful?

Yes
No
Provide feedback about this article
Powered by Confluence and Scroll Viewport.