-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Open
Labels
P3An issue that is relevant to core functions, but does not impede progress. Important, but not urgentAn issue that is relevant to core functions, but does not impede progress. Important, but not urgentarea: cdk/treefeatureThis issue represents a new feature or feature request rather than a bug or bug fixThis issue represents a new feature or feature request rather than a bug or bug fix
Description
The getChildren parameter in the NestedTreeControl has the following signature:
(dataNode: T) => (Observable<T[]> | T[] | undefined | null)
As the control does not manipulate the child collection, this should be changed to readonly so that it can be used with readonly arrays:
(dataNode: T) => (Observable<readonly T[]> | readonly T[] | undefined | null)
thetric
Metadata
Metadata
Assignees
Labels
P3An issue that is relevant to core functions, but does not impede progress. Important, but not urgentAn issue that is relevant to core functions, but does not impede progress. Important, but not urgentarea: cdk/treefeatureThis issue represents a new feature or feature request rather than a bug or bug fixThis issue represents a new feature or feature request rather than a bug or bug fix