Anyone solved this? Currently I am setting s state, then copying the string for the name in to a doc, checking its what i need then going back to my original workflow to select it. (ideas?)
Love to be able to hover and see what this is when trying to select it (tool tip like).
Sorry for the uncomplete code, if you do it in the console try this code:
document.querySelector('.dropdown-item-container').style.width = '500px';
const elements = document.querySelectorAll('.dropdown-item.new-composer');
elements.forEach(elem => {
elem.style.maxWidth = '500px'; // Change the width to your desired value
elem.style.width = '500px';
});
If you use the Chrome extension update the files using the same previous link