Skip to content

Commit 1c60bbb

Browse files
committed
address feedback
1 parent 5507de2 commit 1c60bbb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/material-experimental/mdc-list/list-base.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,18 @@ import {Subscription} from 'rxjs';
2121
import {startWith} from 'rxjs/operators';
2222

2323
@Directive()
24+
/** @docs-private */
2425
export abstract class MatListBase {
2526
// @HostBinding is used in the class as it is expected to be extended. Since @Component decorator
2627
// metadata is not inherited by child classes, instead the host binding data is defined in a way
2728
// that can be inherited.
2829
// tslint:disable-next-line:no-host-decorator-in-concrete
2930
@HostBinding('class.mdc-list--non-interactive')
30-
_isNonInteractive: boolean;
31+
_isNonInteractive: boolean = false;
3132
}
3233

3334
@Directive()
35+
/** @docs-private */
3436
export abstract class MatListItemBase implements AfterContentInit, OnDestroy, RippleTarget {
3537
lines: QueryList<ElementRef<Element>>;
3638

0 commit comments

Comments
 (0)