(container: HTMLElement, config: ModalFieldsConfigLike)
| 729 | } |
| 730 | |
| 731 | protected createFieldsFromConfig(container: HTMLElement, config: ModalFieldsConfigLike): void { |
| 732 | renderTaskModalFieldGroups({ |
| 733 | container, |
| 734 | config, |
| 735 | isCreationMode: this.isCreationMode(), |
| 736 | fieldRenderers: this.getFieldRenderers(), |
| 737 | renderUserField: (fieldContainer, fieldConfig) => { |
| 738 | this.createUserFieldByConfig(fieldContainer, fieldConfig); |
| 739 | }, |
| 740 | }); |
| 741 | } |
| 742 | |
| 743 | protected createField(container: HTMLElement, fieldConfig: ModalFieldConfigLike): void { |
| 744 | renderTaskModalField({ |
nothing calls this directly
no test coverage detected