mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2026-09-09 18:03:21 +00:00
tslint arrow-parens rule (#4003)
This commit is contained in:
@@ -59,7 +59,7 @@ export class PeopleSearchComponent implements OnInit {
|
||||
this.filteredResults$ = this.results
|
||||
.pipe(
|
||||
map((users) => {
|
||||
return users.filter(user => user.id !== this.selectedUser.id);
|
||||
return users.filter((user) => user.id !== this.selectedUser.id);
|
||||
})
|
||||
);
|
||||
this.performSearch = this.performSearchCallback.bind(this);
|
||||
|
||||
Reference in New Issue
Block a user