You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When PinchZoom control is in disabled - it crashed after closing parent component because this.pinchZoom is null.
Need to add :
ngOnDestroy() {
if (this.properties['disabled']) {
return;
}
this.destroy()
}
The text was updated successfully, but these errors were encountered:
When PinchZoom control is in disabled - it crashed after closing parent component because this.pinchZoom is null.
Need to add :
ngOnDestroy() {
if (this.properties['disabled']) {
return;
}
this.destroy()
}
The text was updated successfully, but these errors were encountered: