aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/users/components/UsersSelectSearch.tsx
diff options
context:
space:
mode:
authorStas Vilchik <stas.vilchik@sonarsource.com>2018-02-09 13:50:43 +0100
committerGitHub <noreply@github.com>2018-02-09 13:50:43 +0100
commit2e06a921076f73f901b333eb7fa236f7971ff3ac (patch)
tree5e39c74eb413af1339db70a337114931f84300e8 /server/sonar-web/src/main/js/apps/users/components/UsersSelectSearch.tsx
parentc1a9442546346aeaa8fd1d43535783af0face16c (diff)
downloadsonarqube-2e06a921076f73f901b333eb7fa236f7971ff3ac.tar.gz
sonarqube-2e06a921076f73f901b333eb7fa236f7971ff3ac.zip
enable eslint rules to enforce newlines (#3043)
Diffstat (limited to 'server/sonar-web/src/main/js/apps/users/components/UsersSelectSearch.tsx')
-rw-r--r--server/sonar-web/src/main/js/apps/users/components/UsersSelectSearch.tsx1
1 files changed, 1 insertions, 0 deletions
diff --git a/server/sonar-web/src/main/js/apps/users/components/UsersSelectSearch.tsx b/server/sonar-web/src/main/js/apps/users/components/UsersSelectSearch.tsx
index 4b605759a84..2d54fee167c 100644
--- a/server/sonar-web/src/main/js/apps/users/components/UsersSelectSearch.tsx
+++ b/server/sonar-web/src/main/js/apps/users/components/UsersSelectSearch.tsx
@@ -55,6 +55,7 @@ export default class UsersSelectSearch extends React.PureComponent<Props, State>
this.handleSearch = debounce(this.handleSearch, 250);
this.state = { searchResult: [], isLoading: false, search: '' };
}
+
componentDidMount() {
this.mounted = true;
this.handleSearch(this.state.search);