(e: React.ChangeEvent<HTMLInputElement>)
| 2682 | } |
| 2683 | |
| 2684 | changeBackdrop(e: React.ChangeEvent<HTMLInputElement>) { |
| 2685 | let value = e.target.value; |
| 2686 | if (value !== 'static') { |
| 2687 | value = JSON.parse(value); |
| 2688 | } |
| 2689 | this.setState({ backdrop: value }); |
| 2690 | } |
| 2691 | |
| 2692 | render() { |
| 2693 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected