Hi,
I have question regarding activities order in customer portal (j service desk server). I saw that in cloud you have issue description on the top and order of comments form oldest to newer. Is it possible to configure the same on costumer portal on server jira?
Thank you.
Hi Jmarko,
In server, as far as I know, the default order is activity and then description. Sadly this can not be changed.
You could vote for the existing suggestion here or check out a possible Marketplace app called Refined for Jira which allows you to do this and much more UI styling.
Hope this helps!
There are two ways you can approach this.
1. you can reverse the order of the activity stream. This will move the Details to the top and show the comments in the reverse order that they currently show.
2. you can move the Details to the top and leave the comments in the order they currently show.
Both of these will require you to edit CSS. There are several add-ons out there that will let you do this, but I recommend Scriptrunner (as that add-on provides so many other useful functions as well). The following two CSS are for the above options:
Option 1:
.vp-activity-list.insight-init {
display: flex;
list-style: none;
flex-direction: column-reverse;
}
.vp-activity-list.insight-init {
display: flex;
list-style: none;
flex-direction: column;
}
.vp-activity-list>li {
margin: 0;
padding: 0;
order: -1;
}
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.