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.
Hello,
I'm updating a Bitbucket add-on to Bitbucket 8 and I'm using Client Side Extensions CSE the first time. I need a custom-column in pull-requests and can achieve this with the following code:
import {ButtonExtension} from '@atlassian/clientside-extensions';
/**
* @clientside-extension
* @extension-point bitbucket.ui.pullrequest.commits.table.column.after
*/
export default ButtonExtension.factory((pluginApi, context) => {
// Visiblity depends per row, but for demo is always disabled.
const isHidden = true;
return {
hidden: isHidden,
header: 'My Header',
iconBefore: 'page',
label: 'My Label',
className: 'my-class',
onAction: () => {
},
};
});
This works, but the column is unexpectedly wide, it has a (implicit) width of 320px. I like to have the width set to 80px. Until now I haven't found any way to configure this statically in the CSE code or any CSS.
More background:
CSE renders the column always, but only if isHidden is false a DIV inside the TD is created. The className is set only to that DIV, but not for the empty TD nor the header TH, so creating a CSS like the following doesn't work:
/* Doesn't work: */
.my-class {
width: 80px;
}
I can use a MutationObserver, but this results in a flicker.
My questions are:
Kind regards,
Jo
Hi Johannes,
Considering the nature of your question you may find someone who can help in our Developer Community at https://community.developer.atlassian.com/.
Cheers,
Christian
Premier Support Engineer
Atlassian
Christian, thanks. I filed this questions again at https://community.developer.atlassian.com/t/how-to-set-the-width-of-a-client-side-extension-column/59951.
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.