]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-9903 send empty scmAccount to reset the field
authorStas Vilchik <stas.vilchik@sonarsource.com>
Tue, 17 Oct 2017 13:34:27 +0000 (15:34 +0200)
committerTeryk Bellahsene <teryk@users.noreply.github.com>
Thu, 19 Oct 2017 10:12:11 +0000 (12:12 +0200)
server/sonar-web/src/main/js/apps/users/form-view.js

index ade9b2070bcec78253bf14aced3a9fa07732d7c4..ddde043085b4680898d005fc9b139811506e80b2 100644 (file)
@@ -57,8 +57,10 @@ export default ModalForm.extend({
       .map(function() {
         return $(this).val();
       })
-      .toArray();
-    return scmAccounts.filter(value => !!value);
+      .toArray()
+      .filter(value => !!value);
+    // return empty string to reset the field when updating
+    return scmAccounts.length ? scmAccounts : '';
   },
 
   addScmAccount() {