You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I would like to control the number of days shown on the "uptime bar"
It defaults to 90 but I can see that dynamically based on screen size it will reduce to 30 and 60.
function getKeyAndCount(width) {
if (width <= MOBILE_MAXIMUM_WIDTH || (width > TWO_COLUMN_BREAKPOINT && colCount === 3)) {
return { dayCount: 30, uptimeKey: 'thirty', singleColumn: width <= MOBILE_MAXIMUM_WIDTH }
} else if (width <= DESKTOP_MINIMUM_WIDTH || (width > ONE_COLUMN_BREAKPOINT && colCount > 1)) {
return { dayCount: 60, uptimeKey: 'sixty' }
} else {
return { dayCount: 90, uptimeKey: 'ninety' }
}
}
But is there any way I can force it to always for instance display 30 no matter about screen size??
Hi there,
Not sure if this feature is till into consideration. I have open a ticket SPSP-6909 for the same request to reduce the uptime showcase to 30 days but it does not appear to be implemented yet.
Regards,
Jibin
Hey John,
Great question. These 30/60/90 day views are ones that were just recently implemented in the product, to provide a better experience on smaller screen sizes. As it stands today, these views are coded to be a responsive design only - in other words, the view changes as the screen and window size changes, but there isn't a setting to force one of those views for all all screen sizes.
We'll get this opened as a feature request for consideration internally, as we have seen a few other customers looking for limited uptime showcase views. For the time being, a savvy frontend web developer on your team might be able to add some custom HTML or CSS in the Customize > Customize status page > Customize HTML & CSS section that can mimic these truncated views even on larger screens.
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.