diff options
author | Stas Vilchik <stas.vilchik@sonarsource.com> | 2017-12-20 13:26:55 +0100 |
---|---|---|
committer | Stas Vilchik <stas.vilchik@sonarsource.com> | 2017-12-20 13:26:55 +0100 |
commit | 5ab22e4c6a0ef38da5481f7e9aa45c823e68deff (patch) | |
tree | 55ae62c4c273341e7fa9c24ad669ad1e6b412478 /server/sonar-web | |
parent | 54bd71a3ec3ed02c62ae65e3196e76d3a859bda1 (diff) | |
download | sonarqube-5ab22e4c6a0ef38da5481f7e9aa45c823e68deff.tar.gz sonarqube-5ab22e4c6a0ef38da5481f7e9aa45c823e68deff.zip |
fix quality flaw
Diffstat (limited to 'server/sonar-web')
-rw-r--r-- | server/sonar-web/src/main/js/helpers/urls.ts | 2 |
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'; |