()
| 59 | } |
| 60 | |
| 61 | function HighlightInput() { |
| 62 | const dispatch = useAppDispatch(); |
| 63 | const value = useAppSelector( |
| 64 | (state) => state.ui.filter[FilterName.Highlight], |
| 65 | ); |
| 66 | return ( |
| 67 | <FilterInput |
| 68 | value={value} |
| 69 | placeholder="Highlight" |
| 70 | icon={FilterIcon.HIGHLIGHT} |
| 71 | color="hsl(48, 100%, 50%)" |
| 72 | onChange={(expr) => dispatch(setHighlight(expr))} |
| 73 | /> |
| 74 | ); |
| 75 | } |
| 76 | |
| 77 | export function ResumeAll() { |
| 78 | const dispatch = useAppDispatch(); |
nothing calls this directly
no test coverage detected
searching dependent graphs…