How can I apply custom CSS to a dynamic label in an Angular Formly form?
In one of our Formly modals, I am generating a dynamic label like this:
formlyConfig.templateOptions.wrapperLabel = 'Is '+ emailAddress + ' the best email?';
//emailAddress is populated by a service.
I want to display this on the UI as - Is [email protected] the best email?