I am using a nebular theme checkbox in the Angular 8 App.
<nb-checkbox [checked]="enable_checked" (checkedChange)="enable($event)" >Enable </nb-checkbox>
i am updating the checkbox using "enable_checked"
Boolean .When the component loaded it works fine but when I changed the value dynamically of BOOLEAN("enable_checked"
) it is not getting updated at the front end but the boolean is updated.