From 5ab5e070121b9767d8a82a3969cce404f517e2de Mon Sep 17 00:00:00 2001 From: uzair-coder07 Date: Tue, 26 May 2026 13:13:41 -0500 Subject: [PATCH] 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. --- docs/admin/templates/extending-templates/dynamic-parameters.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/admin/templates/extending-templates/dynamic-parameters.md b/docs/admin/templates/extending-templates/dynamic-parameters.md index d45323fdcb..b0f0229ca2 100644 --- a/docs/admin/templates/extending-templates/dynamic-parameters.md +++ b/docs/admin/templates/extending-templates/dynamic-parameters.md @@ -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.
The classic parameter option. | | `dropdown` | `string`, `number` | Yes | Choose a single option from a searchable dropdown list.
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.
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.
Default for `string/number` parameters without options. | | `textarea` | `string` | No | Multi-line text input field for longer content. |