(private readonly node: FieldNode)
| 24 | readonly submissionErrors: WritableSignal<readonly ValidationError.WithFieldTree[]>; |
| 25 | |
| 26 | constructor(private readonly node: FieldNode) { |
| 27 | this.submissionErrors = linkedSignal({ |
| 28 | source: this.node.structure.value, |
| 29 | computation: () => [] as readonly ValidationError.WithFieldTree[], |
| 30 | }); |
| 31 | } |
| 32 | |
| 33 | /** |
| 34 | * Whether this form is currently in the process of being submitted. |
nothing calls this directly
no test coverage detected