We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6eed95e commit 29cbcf9Copy full SHA for 29cbcf9
src/cdk-experimental/column-resize/event-dispatcher.ts
@@ -33,7 +33,11 @@ export class HeaderRowEventDispatcher {
33
readonly overlayHandleActiveForCell = new Subject<Element | null>();
34
35
/** Distinct and shared version of headerCellHovered. */
36
- readonly headerCellHoveredDistinct = this.headerCellHovered.pipe(distinctUntilChanged(), debounceTime(200), share());
+ readonly headerCellHoveredDistinct = this.headerCellHovered.pipe(
37
+ distinctUntilChanged(),
38
+ debounceTime(200),
39
+ share(),
40
+ );
41
42
/**
43
* Emits the header that is currently hovered or hosting an active resize event (with active
0 commit comments