File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/material-experimental/tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ export class MatTreeNestedDataSource<T> implements DataSource<T> {
28
28
set data ( value : T [ ] ) { this . _data . next ( value ) ; }
29
29
30
30
connect ( collectionViewer : CollectionViewer ) : Observable < T [ ] > {
31
- return merge ( [ collectionViewer . viewChange , this . _data ] )
31
+ return merge ( ... [ collectionViewer . viewChange , this . _data ] )
32
32
. pipe ( map ( ( ) => {
33
33
return this . data ;
34
34
} ) ) ;
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ This tree builds on the foundation of the CDK tree and uses a similar interface
5
5
data source input and template, except that its element and attribute selectors will be prefixed
6
6
with ` mat- ` instead of ` cdk- ` .
7
7
8
- There are two types of trees: Flat tree and Nested Tree . The DOM structures are different for these
8
+ There are two types of trees: Flat tree and nested tree . The DOM structures are different for these
9
9
two types of trees.
10
10
11
11
#### Flat tree
You can’t perform that action at this time.
0 commit comments