({ payload }: { payload: string })
| 83 | }) |
| 84 | |
| 85 | function updateCountValue({ payload }: { payload: string }) { |
| 86 | node.props.inputCountString = `${payload ? payload.length : 0}${ |
| 87 | maxLength ? `/${maxLength}` : '' |
| 88 | }` |
| 89 | } |
| 90 | |
| 91 | function getMaxLength() { |
| 92 | const rules = node.props.parsedRules |
no outgoing calls
no test coverage detected