Since today the right panel of editing/viewing an issue is very wide. I can adjust it per issue, but I can't find where I can fix the width. Does anyone know if this is possible and where I can find it?
Prior to this week, resizing the right pane would keep it that size (or the right pane was smaller, not certain at this point). Now it takes up a third of my screen and that is just unnecessary, I have to resize every time I open up a card/issue to read. It is very time consuming when I go through dozens of cards on an hourly basis.
Thanks.
I checked it with the browser inspector. See image.
This is now 35%. I think it was about 20% before today. For me this is not an improvement.
See example:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is not able to be set to fixed width.
This is a personal setting stored in your browser cookies. If you set it to a width all issues you view are the same in width, using the same screen.
If you use an external screen, the aspect ratio will be adjusted to the screen size.
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.
@Micha van Tol this happened because devs keep stuffing jira with "very useful" AI trash that nobody really needed. They added a "very helpful" "Improve issue" button on the right panel and forcibly increased the column width to "35% + 12px" to line up the buttons in a single row.
If you want to get rid of this "improvement" you can use a browser extension that allows applying custom CSS styles to web pages and use this code to eliminate the AI trash and reduce the column width.
/* ==UserStyle==
@name Jira Cleanup
@namespace github.com/openstyles/stylus
@version 1.0.0
==/UserStyle== */
@-moz-document domain("[put URL of your jira instance here]") {
button[data-testid="issue-smart-request-summary-trigger.ui.jira-smart-summary-standard-button"],
div[data-testid="issue.views.issue-base.foundation.status.improve-issue"] {
display: none !important;
}
div[data-testid="issue.views.issue-details.issue-layout.container-right"] {
flex: 0 1 calc(30% + 12px) !important;
}
}
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.