docs: fix multi-select form type description (#25685)

The `multi-select` form type description in the dynamic parameters docs
incorrectly stated it renders checkboxes. The actual UI is a searchable
dropdown combobox (`MultiSelectCombobox`) with selected items shown as
removable chips.

> This PR was authored by Coder Agents on behalf of @uzair-coder07.
This commit is contained in:
uzair-coder07
2026-05-26 13:13:41 -05:00
committed by GitHub
parent 5d8ca2e5ce
commit 5ab5e07012
@@ -124,7 +124,7 @@ where each option has a `name` (displayed to the user) and a `value` (used in yo
|----------------|--------------------------------------------|---------|------------------------------------------------------------------------------------------------------------------------|
| `radio` | `string`, `number`, `bool`, `list(string)` | Yes | Radio buttons for selecting a single option with all choices visible at once. </br>The classic parameter option. |
| `dropdown` | `string`, `number` | Yes | Choose a single option from a searchable dropdown list. </br>Default for `string` or `number` parameters with options. |
| `multi-select` | `list(string)` | Yes | Select multiple items from a list with checkboxes. |
| `multi-select` | `list(string)` | Yes | Select multiple items from a searchable dropdown list. </br>Selected items are shown as removable chips. |
| `tag-select` | `list(string)` | No | Default for `list(string)` parameters without options. |
| `input` | `string`, `number` | No | Standard single-line text input field. </br>Default for `string/number` parameters without options. |
| `textarea` | `string` | No | Multi-line text input field for longer content. |