@angular/cdk 13.0.3 → 13.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -608,7 +608,8 @@ class OverlayOutsideClickDispatcher extends BaseOverlayDispatcher {
608
608
  // Every click event caused by a pointer device has a preceding pointerdown
609
609
  // event, unless the click was programmatically triggered (e.g. in a unit test).
610
610
  const origin = event.type === 'click' && this._pointerDownEventTarget
611
- ? this._pointerDownEventTarget : target;
611
+ ? this._pointerDownEventTarget
612
+ : target;
612
613
  // Reset the stored pointerdown event target, to avoid having it interfere
613
614
  // in subsequent events.
614
615
  this._pointerDownEventTarget = null;