probably an easy one: I got a button defined like this
<button mat-raised-button color="accent" class="reserve" [disabled]="buttonIsDisabled()"
where buttonIsDisabled is defined as
buttonIsDisabled() {
return !(this.data_privacy && this.captcha.length > 0);
}
this.captcha is a string that is receiving its value through some async call.
In this setup the button is only enabled after the next click on the screen as the function is being reevaluated. Is there a way to enable button once the value for this.captcha is set?
question from:https://stackoverflow.com/questions/65642504/angular-enable-button-when-asynchronous-call-returns