"Active sprint" window - expand story list to full width?

SG January 4, 2024

The main page of "Active sprints" only utilizes half the width, which truncates the story titles. Is it possible to expand to the full width? Thank you.

Example:

"Story Title cuts off..."  

Need:

"Story Title cuts off so not able to see the full description"  

2 answers

0 votes
Ricardo Severo
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
August 9, 2024

When we started increasing the title of Issues with the description of Subsystems and Features, we also noticed this problem here.

After some research, I saw that the bug is still open and has not been resolved.

However, we found a workaround that may most of the users of Google Chrome.

On the Active Sprint (Board) page, open the browser console and include the following script:

// Function to apply the style
function applyStyle() {
    document.querySelectorAll('.css-1s193e4').forEach((div) => {
        div.setAttribute('style', 'max-width: 100%!important');
    });
}

// Observer to monitor changes in the DOM
const observer = new MutationObserver(() => {
    applyStyle();
});

// Observer settings: observe changes in children and subtrees
observer.observe(document.body, { childList: true, subtree: true });

// Apply or style initially
applyStyle();

You can see that the script above solves the problem, however, it would need to be run every time you enter the page. To do this, you can use a third-party extension so that this script runs automatically every time you access the Board.

Extension: https://violentmonkey.github.io/

Simply install the extension in your browser, include the script and activate it to run on the Board page.

I hope it helps.

0 votes
Trudy Claspill
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
January 4, 2024

Hello @SG 

Can you provide a screen image of what you are seeing? When you say "half the width" to what space are you referring?

In my Chrome browser when I view an Active Sprints page the board columns expand to fill the width of the browser window.

SG January 6, 2024

Hi Trudy, thanks for the response!  Hopefully this helps, if not I can provide more details.

2024_01_04_09_51_38_GRS_Board_Agile_board_JIRA_cutoff sprint.png

Trudy Claspill
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
January 7, 2024

Hello @SG 

I have not been able to replicate what you are seeing.

Does this happen for all users?

Have you tried different browsers or an Incognito Chrome window?

Can you provide a full screen image that shows the entire Jira application. We don't need to see the URL of the page.

SG January 7, 2024

Hi Trudy.  Yes, all users. Chrome, Chrome Incognito and Edge all display with half the width of the page not utilized.

JIRA_width issue.png

Trudy Claspill
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
January 8, 2024

Thank you for sharing that fuller screen image.

I see now that what you are referring to is the truncation of the Summary in the Swimlane headers.

I have the same experience in my Jira Cloud instance.

I am not aware of any configuration option available to us to change that.

It appears that this issue is already known to Atlassian. You can add your votes and comments to it here:

https://jira.atlassian.com/browse/JSWCLOUD-26116

SG January 8, 2024

Thank you Trudy.

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
PREMIUM
PERMISSIONS LEVEL
Product Admin
TAGS
AUG Leaders

Atlassian Community Events