aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/users/components/UsersSelectSearch.js
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/src/main/js/apps/users/components/UsersSelectSearch.js')
-rw-r--r--server/sonar-web/src/main/js/apps/users/components/UsersSelectSearch.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/users/components/UsersSelectSearch.js b/server/sonar-web/src/main/js/apps/users/components/UsersSelectSearch.js
index 96cc5da6e53..007a6e05138 100644
--- a/server/sonar-web/src/main/js/apps/users/components/UsersSelectSearch.js
+++ b/server/sonar-web/src/main/js/apps/users/components/UsersSelectSearch.js
@@ -37,7 +37,7 @@ export type Option = {
type Props = {
autoFocus?: boolean,
excludedUsers: Array<string>,
- handleValueChange: (Option) => void,
+ handleValueChange: Option => void,
searchUsers: (string, number) => Promise<*>,
selectedUser?: Option
};