(binding: string)
| 250 | }; |
| 251 | |
| 252 | const remove = (binding: string) => { |
| 253 | if (disabled) return; |
| 254 | labelCacheRef.current.delete(binding); |
| 255 | onChange(value.filter((v) => v !== binding)); |
| 256 | }; |
| 257 | |
| 258 | // Resolve display label from current search results |
| 259 | const resolveLabel = (fullname: string): string | undefined => { |
no test coverage detected