jw-bootstrap-switch-ng2 icon indicating copy to clipboard operation
jw-bootstrap-switch-ng2 copied to clipboard

Issue with switch state displaying half on half off

Open bjornharvold opened this issue 4 years ago • 0 comments

Bug Report or Feature Request (mark with an x)

- [X] bug report -> please search issues before submitting

Versions.

Angular: 11.2.7 jw-bootstrap-switch-ng2: 2.0.5

Repro steps.

Occurs randomly. Sometimes, when a page is loaded / reloaded, the state of the switch looks like this (see image attached) Screen Shot 2021-04-06 at 2 15 00 PM

@Input() disabled = false;
@Input() readonly = false;
@Input() animate = true;
@Input() size: 'mini' | 'small' | 'normal' | 'large' = 'normal';
@Input() onColor: 'primary' | 'info' | 'success' | 'warning' | 'danger' | 'default' = 'primary';
@Input() offColor: 'primary' | 'info' | 'success' | 'warning' | 'danger' | 'default' = 'default';

<bSwitch [id]="ngControl.name"
           [formControl]="ngControl.control"
           [switch-size]="size"
           [switch-on-color]="onColor"
           [switch-off-color]="offColor"
           [switch-disabled]="disabled"
           [switch-readonly]="readonly"
           [switch-animate]="animate"
           (changeState)="toggled($event)"
  ></bSwitch>

The log given by the failure.

No failure error given

bjornharvold avatar Apr 06 '21 07:04 bjornharvold