Angular 8 Metronic binding not updating
问题 I started a project with Angular 8 Metronic. I have a component with a form. I want spinner appears on submit click and disappear on API response. Here is a part of the component code : @Component({ selector: 'change-password', templateUrl: './change-password.component.html', styleUrls: ['./change-password.component.scss'], }) export class ChangePasswordComponent implements OnInit, OnDestroy { isLoading: boolean = false; ... submit() { this.isLoading = true; this.utilisateurService