How do I display issue type name instead of issue type avatar, when seeing all the issues and filters within the project? Is there anyway way configuring it within the application without changing the script?
Thanks!
Hi, I'm afraid no such configuration exist at the moment.
However you can run a script (I'd recommend doing so via a plugin, although you can find other work arounds in community) such as the following at your own risk
(tested in project issue list side panel)
$('.issue-content-container').prev('div').find('img').replaceWith(function(){ return $(this).attr('alt')});
doing so might affect the layout of the page depending on the issue type names
I love this, how often can an option be so simple to implement for the company but we have to code a work-a-round to fix the problem ourselves, lol.
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.