How to display the Priority Name instead of icon in the Jira Filter Result dashboard gadget
Platform Notice: Data Center Only - This article only applies to Atlassian apps on the Data Center platform.
Note that this KB was created for the Data Center version of the product. Data Center KBs for non-Data-Center-specific features may also work for Server versions of the product, however they have not been tested. 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
Summary
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.
How to display the Priority name instead of the Priority icon in the Filter Result dashboard gadget:

Environment
All versions of Jira Core 8.x and 9.x.
Solution
This is not an out-of-the-box feature in Jira. The feature request JRASERVER-66437 has been created requesting this enhancement.
As a workaround, you can achieve this by modifying the priority-columnview.vm file to display the priority name.
Locate $<installation directory>/atlassian-jira/WEB-INF/classes/templates/jira/issue/field/priority-columnview.vm
Modify priority-columnview.vm as follows:
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)Restart Jira.
Verify that the Priority Name is reflected in the gadget:

Was this helpful?