(nextProps: TermsProps & {children: any})
| 23 | } |
| 24 | |
| 25 | shouldComponentUpdate(nextProps: TermsProps & {children: any}) { |
| 26 | return ( |
| 27 | ObjectTypedKeys(nextProps).some((i) => i !== 'write' && this.props[i] !== nextProps[i]) || |
| 28 | ObjectTypedKeys(this.props).some((i) => i !== 'write' && this.props[i] !== nextProps[i]) |
| 29 | ); |
| 30 | } |
| 31 | |
| 32 | onRef = (uid: string, term: Term | null) => { |
| 33 | if (term) { |
nothing calls this directly
no test coverage detected