This feels like it should be an easy one, but I can't seem to find the answer. When an issue is resolved it is assigned a date and time of the resolution. Looking in the issue it displays the date and time for "Resolved". In a filter where I search for issues in the resovlved state, I would like to see the date and time for when it was resolved. I have the resolved column, but it only shows the date, not the time. Can I configure the issue navigator to show me the date and also show the time?
You could modify the template. This could be different depending on the JIRA version. For JIRA 4.4.3, the template that displays dates in a column is templates.jira.issue.field.date-columnview.vm.
Replace
#if ($value) <span title="${title}"><time datetime="${iso8601}">${value}</time></span> #else #end
with
#if ($value) <span title="${title}"><time datetime="${iso8601}">${title}</time></span> #else #end
${title} has the full date-time and is displayed in the mouse over.
Excellent! I forgot to mention I am running on 4.4.3. I tried as you suggested and it worked great! I appreciate the answer, and such a nice simple solution. Thanks!!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I don't think that's possible with the current issue navigator.
You could create a custom field that displayed the time using the date that is in the resolution field I guess
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.