diff options
Diffstat (limited to 'server/sonar-web/src/main/js/api/users.ts')
-rw-r--r-- | server/sonar-web/src/main/js/api/users.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/api/users.ts b/server/sonar-web/src/main/js/api/users.ts index 423c3b67b80..7353412753e 100644 --- a/server/sonar-web/src/main/js/api/users.ts +++ b/server/sonar-web/src/main/js/api/users.ts @@ -88,7 +88,7 @@ export function updateUser(data: { }): Promise<User> { return postJSON('/api/users/update', { ...data, - scmAccount: data.scmAccount.length > 0 ? data.scmAccount : '' + scmAccount: data.scmAccount.length > 0 ? data.scmAccount : '', }); } |