Which product are you using?
PDF Express Js Plus
PDF.js Express Version
8.X.X.X
Detailed description of issue
i need to increase the width/space of the action button label for example, ```
{
type: ‘actionButton’,
label: ‘1’,
onClick: () => console.log(‘clicked’),
},
but currently it is breaking into 3 lines
**Expected behaviour**
need to increase the width/space of the action button label for example, and arrange the action buttons one below the other```
{
type: 'actionButton',
label: '1',
onClick: () => console.log('clicked'),
},
```here in above code label = '1' instead of '1' i need to give 'Some text' with out line break,
and arrange the action buttons one below the other
**Does your issue happen with every document, or just one?**
Yes
**Link to document**
{Provide a link to the document in question if possible}
**Code snippet**
instance.UI.contextMenuPopup.update([
{
type: 'actionButton',
label: 'Test1',
},
{
type: 'actionButton',
label: 'Test2',
},
{
type: 'actionButton',
label: 'Test3',
},
])