Css – ngClass does not switch value when using object in component
When I use the following code to switch the class everything works fine <p [ngClass]="idPresent ? 'alert alert-success' : 'alert alert-danger'"> Working </p> On changing the value of IdPresent in the component, I can see the appropriate class being applied,…