mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-10-08 14:51:32 +00:00
tslint arrow-parens rule (#4003)
This commit is contained in:
@@ -36,7 +36,7 @@ export class TreeViewService {
|
||||
map((nodePage: NodePaging) => {
|
||||
return nodePage.list.entries.filter((node) => node.entry.isFolder ? node : null);
|
||||
}),
|
||||
map((nodes: NodeEntry[]) => nodes.map(node => new TreeBaseNode(node)))
|
||||
map((nodes: NodeEntry[]) => nodes.map((node) => new TreeBaseNode(node)))
|
||||
);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user