rcos / rcos_io

The final RCOS website.
https://new.rcos.io
MIT License
3 stars 3 forks source link

Tag picker multiple-selection is unintuitive #151

Closed Gerzer closed 1 year ago

Gerzer commented 1 year ago

Selecting a new tag in the tag picker in the project editor deselects any previously selected tags, making it impossible to add more than one tag to a project.

bnidevs commented 1 year ago

@Apexal

Apexal commented 1 year ago

This uses the native select component with the multiple attribute, allowing for selection of multiple while holding down control. I'll either add help text making this clear, or switch to checkboxes. Good call out!

Gerzer commented 1 year ago

I‘m a little surprised that the native <select> component is so unintuitive on mainstream platforms. There is value in using native components, so perhaps clearly visible help text could be a good compromise. (Checkboxes may be more intuitive without help text, but they don’t scale well as you add more options, and there are already a large number of options as-is.)

Apexal commented 1 year ago

Added help test describing how to select multiple.

Gerzer commented 1 year ago

Thanks!