JIRA Dashboard with latest comments on top

Sarah October 21, 2019

Hello, 

I need a possibility to show all latest comments for a certain filter. I though about a Dashboard showing this... is this possible?

E.g.

ID #1234 21.10.19: Comment: please send to customer 

ID #998: 20.10.19: Comment need more information of the test case ...

...

Thanks.

3 answers

1 accepted

0 votes
Answer accepted
Jack Brickey
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
October 21, 2019

the comment field isn't available for display in the filter results. Please reference (vote/watch) this issue - JRACLOUD-2734 

However, consider the following solution. If you do not already have it, add Automation for Jira addon app. and use the comment trigger to copy the comment into a custom text field (e.g. "latest comment"). There is a free version (Lite) that will also work but given you are going to be working off comments then you likely will blow past the monthly allotment of 300 automations.

Sarah October 21, 2019

Thank you : )

0 votes
Aron Gombas _Midori_
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
October 21, 2019

There are multiple Jira apps that will display the last comment as a custom field.

You can then include the custom field's column in Issue Navigator and your use case is solved!

0 votes
Andrew Laden
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.
October 21, 2019

You can also do with with a SIL scripted custom field. Using the "power custom fields" addon.

string[] lastCommentDetails = getLastComment(key);

if(!isNull(lastCommentDetails)){
    return lastCommentDetails["text"];
}
return "";

 

https://marketplace.atlassian.com/apps/1210749/power-custom-fields-for-jira?hosting=server&tab=overview 

Suggest an answer

Log in or Sign up to answer