Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How do I get rid of strike throughs on Jira issues with Resolution set?

Abhinav Arae June 25, 2019

How do I get rid of strike through's on Jira issues when moved to a specific status with Resolution set on the transition.

use case: We need to create a Resolution on 'Done' status for the issues to show up on the Portfolio plan. When the status category of a status is Done and No resolution is set on it, then the issues wouldn't show up on Jira portfolio. In order to fix this, we have created a Resolution on 'Done' status which fixed the Portfolio issue, but we don't want the strike through's on Jira issues on the board.

Is there a way to disable strike through's with Script Runner or any other effective ways?

1 answer

0 votes
Ravi Sagar _Sparxsys_
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
June 25, 2019

Hi @Abhinav Arae 

You can always use CSS like this below.

.ghx-issue-compact.ghx-done .ghx-key a {

text-decoration: none;

}

You can either insert CSS using the announcement banner (system wide) or if you have ScriptRunner installed then even better as you can set the context where that CSS is loaded.

Abhinav Arae June 25, 2019

Hi @Ravi Sagar _Sparxsys_ 

Thank you very much for your reply !

I've tried adding below CSS in Jira banner, but the strike through's aren't gone yet:

<style type="text/css">.ghx-issue-compact.ghx-done .ghx-key a {

text-decoration: none;
}</style>

 

Am I doing something different from your suggested solution?

Ravi Sagar _Sparxsys_
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
June 25, 2019

The code will work for the backlog view (Board). Look for the other CSS classes in different sections and include those as well.

Suggest an answer

Log in or Sign up to answer