(props)
| 32 | export default class Monitor extends React.Component { |
| 33 | |
| 34 | constructor(props) { |
| 35 | super(props) |
| 36 | // This chart reference is needed to update the charts |
| 37 | this.divRef = React.createRef(); |
| 38 | this.textRef = React.createRef(); |
| 39 | }; |
| 40 | |
| 41 | updateMonitor() { |
| 42 | if (this.textRef !== null && !SerialDataObject.pauseFlag) { |
nothing calls this directly
no outgoing calls
no test coverage detected