aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStas Vilchik <stas.vilchik@sonarsource.com>2017-12-20 13:26:55 +0100
committerStas Vilchik <stas.vilchik@sonarsource.com>2017-12-20 13:26:55 +0100
commit5ab22e4c6a0ef38da5481f7e9aa45c823e68deff (patch)
tree55ae62c4c273341e7fa9c24ad669ad1e6b412478
parent54bd71a3ec3ed02c62ae65e3196e76d3a859bda1 (diff)
downloadsonarqube-5ab22e4c6a0ef38da5481f7e9aa45c823e68deff.tar.gz
sonarqube-5ab22e4c6a0ef38da5481f7e9aa45c823e68deff.zip
fix quality flaw
-rw-r--r--server/sonar-web/src/main/js/helpers/urls.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/helpers/urls.ts b/server/sonar-web/src/main/js/helpers/urls.ts
index a23974850b2..ffe6fa17794 100644
--- a/server/sonar-web/src/main/js/helpers/urls.ts
+++ b/server/sonar-web/src/main/js/helpers/urls.ts
@@ -17,8 +17,8 @@
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
-import { omitBy, isNil } from 'lodash';
import { stringify } from 'querystring';
+import { omitBy, isNil } from 'lodash';
import { isShortLivingBranch } from './branches';
import { getProfilePath } from '../apps/quality-profiles/utils';
import { Branch } from '../app/types';