(selection: ModelSelection)
| 1109 | } |
| 1110 | |
| 1111 | function selectionSearchText(selection: ModelSelection) { |
| 1112 | return [ |
| 1113 | selection.id, |
| 1114 | ...(selection.params ?? []).flatMap((param) => [param.id, param.value]), |
| 1115 | ].join(" ") |
| 1116 | } |
| 1117 | |
| 1118 | function toCommandSelectItem( |
| 1119 | option: SelectOption | null, |