(e: React.KeyboardEvent<HTMLInputElement>)
| 92 | }, [currentSearch, currentProcesses]); |
| 93 | |
| 94 | const handleInputKeyDown = (e: React.KeyboardEvent<HTMLInputElement>) => { |
| 95 | e.stopPropagation(); |
| 96 | if (e.key === "Enter") { |
| 97 | addProcessToSelection(currentSearch); |
| 98 | setCurrentSearch(""); |
| 99 | } |
| 100 | }; |
| 101 | |
| 102 | const [isPopoverVisible, setPopoverVisible] = React.useState(false); |
| 103 |
nothing calls this directly
no test coverage detected
searching dependent graphs…