Feature request for product/service
Chat
Describe the request
The Problem:
Currently, the text inside the Composer and tray multiple-choice options is completely unselectable due to global user-select: none rules. Often, the AI provides an option that is almost exactly what I want, but it needs a slight tweak. Because I cannot highlight and copy the option’s text, I am forced to manually retype the entire suggestion just to modify a few words in my follow-up prompt or the “Other…” field.
The Solution:
Targeting the specific label spans to re-enable text selection allows users to highlight the text without introducing weird visual artifacts when clicking the broader button area.
I am currently using this CSS workaround locally, and it works perfectly:
For workbench.glass.main.css:
.ui-tray-option .ui-tray-option__label {
user-select: text;
-webkit-user-select: text;
width: 100%;
}
For workbench.desktop.main.css:
.composer-questionnaire-toolbar-option-label {
user-select: text;
-webkit-user-select: text;
}
Implementing this natively would be a massive quality-of-life improvement for workflows where the AI is on the right track but needs minor steering.
Screenshot / Screen Recording
Operating System (if it applies)
Linux
