diff options
Diffstat (limited to 'server/sonar-web/src/main/js/apps/account/notifications/Projects.js')
-rw-r--r-- | server/sonar-web/src/main/js/apps/account/notifications/Projects.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/account/notifications/Projects.js b/server/sonar-web/src/main/js/apps/account/notifications/Projects.js index 41de2832fdb..89c32e17079 100644 --- a/server/sonar-web/src/main/js/apps/account/notifications/Projects.js +++ b/server/sonar-web/src/main/js/apps/account/notifications/Projects.js @@ -49,7 +49,8 @@ class Projects extends React.Component { }; componentWillReceiveProps(nextProps: Props) { - // remove all projects from `this.state.addedProjects` that already exist in `nextProps.projects` + // remove all projects from `this.state.addedProjects` + // that already exist in `nextProps.projects` const nextAddedProjects = differenceBy( this.state.addedProjects, nextProps.projects, |