mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
tslint arrow-parens rule (#4003)
This commit is contained in:
@@ -84,10 +84,10 @@ export class NodePermissionDialogService {
|
||||
updateNodePermissionByDialog(nodeId?: string, title?: string): Observable<MinimalNodeEntryEntity> {
|
||||
return this.contentService.getNode(nodeId, { include: ['allowableOperations'] })
|
||||
.pipe(
|
||||
switchMap(node => {
|
||||
switchMap((node) => {
|
||||
return this.openAddPermissionDialog(node.entry, title)
|
||||
.pipe(
|
||||
switchMap(selection => {
|
||||
switchMap((selection) => {
|
||||
return this.nodePermissionService.updateNodePermissions(nodeId, selection);
|
||||
})
|
||||
);
|
||||
|
Reference in New Issue
Block a user