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.
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.
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!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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 "";
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.