(target: EventTarget | null)
| 259 | }; |
| 260 | |
| 261 | const isInlineInputTarget = (target: EventTarget | null) => |
| 262 | target instanceof Node && |
| 263 | inlineInputRef.current !== null && |
| 264 | inlineInputRef.current.contains(target); |
| 265 | |
| 266 | if (inlineSearch) { |
| 267 | const inlineInputValue = isOpen ? inputValue : displayValue; |
no test coverage detected