Skip to content

Commit f82703c

Browse files
committed
Addressed comments
1 parent d2c6d0b commit f82703c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cdk-experimental/tabs/tabs.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,15 +80,15 @@ export class CdkTabs {
8080
'[attr.aria-orientation]': 'pattern.orientation()',
8181
'[attr.aria-activedescendant]': 'pattern.activedescendant()',
8282
'(keydown)': 'pattern.onKeydown($event)',
83-
'(mousedown)': 'pattern.onPointerdown($event)',
83+
'(pointerdown)': 'pattern.onPointerdown($event)',
8484
},
8585
})
8686
export class CdkTablist {
8787
/** The directionality (LTR / RTL) context for the application (or a subtree of it). */
8888
private readonly _directionality = inject(Directionality);
8989

9090
/** The CdkTabs nested inside of the CdkTablist. */
91-
private readonly _cdkTabs = contentChildren(CdkTab, {descendants: true});
91+
private readonly _cdkTabs = contentChildren(CdkTab);
9292

9393
/** A signal wrapper for directionality. */
9494
protected textDirection = toSignal(this._directionality.change, {

0 commit comments

Comments
 (0)