Anyone solved the issue of long name in Bubble value drop downs?

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).

  • as you can see the name are wayyyy long… and hard to read, understand function.

I’m hoping they do that for the boost day, give hover to see full name

2 Likes

Same – this happens a LOT :sweat_smile: I just start clicking between the different options until I find the one I’m looking for :sweat_smile:

1 Like

Sometimes I Execute this line in the console:

document.querySelector('.items-inner-container').style.width = '500px';

I think I will make a Chrome extension for this line to be executed automatically!

1 Like

This is the first edition of the Chrome extension:
https://drive.google.com/drive/folders/1vqzuD68a_VtR0DgNnR_18tqeQTVSHA3m?usp=sharing

Upload it to your browser and try it if you want

1 Like


looks like text is trill truncated to the original width when viewing states… but almost :slight_smile:

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