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:
@@ -79,11 +79,11 @@ export class ContentMetadataComponent implements OnChanges, OnInit, OnDestroy {
|
||||
switchMap(this.saveNode.bind(this))
|
||||
)
|
||||
.subscribe(
|
||||
updatedNode => {
|
||||
(updatedNode) => {
|
||||
Object.assign(this.node, updatedNode);
|
||||
this.alfrescoApiService.nodeUpdated.next(this.node);
|
||||
},
|
||||
error => this.logService.error(error)
|
||||
(error) => this.logService.error(error)
|
||||
);
|
||||
|
||||
this.loadProperties(this.node);
|
||||
|
Reference in New Issue
Block a user