File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
src/material-experimental/mdc-list Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -23,4 +23,6 @@ import {MatListBase} from './list-base';
23
23
{ provide : MatListBase , useExisting : MatActionList } ,
24
24
]
25
25
} )
26
- export class MatActionList extends MatListBase { }
26
+ export class MatActionList extends MatListBase {
27
+ _hasRipple = true ;
28
+ }
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ import {Subscription} from 'rxjs';
21
21
import { startWith } from 'rxjs/operators' ;
22
22
23
23
@Directive ( )
24
- export class MatListBase {
24
+ export abstract class MatListBase {
25
25
// @HostBinding is used in the class as it is expected to be extended. Since @Component decorator
26
26
// metadata is not inherited by child classes, instead the host binding data is defined in a way
27
27
// that can be inherited.
Original file line number Diff line number Diff line change @@ -33,4 +33,6 @@ import {MatListBase} from './list-base';
33
33
{ provide : MatList , useExisting : MatNavList } ,
34
34
]
35
35
} )
36
- export class MatNavList extends MatListBase { }
36
+ export class MatNavList extends MatListBase {
37
+ _hasRipple = true ;
38
+ }
You can’t perform that action at this time.
0 commit comments