diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2017-02-22 09:32:55 +0100 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2017-02-23 18:32:24 +0100 |
commit | d26ecc872afbded64666a266529affdcbb0557ad (patch) | |
tree | 0bfbcfe49898cb8711ce81a858c2dd4c82d6c081 /server/sonar-web/src/main/js/helpers/urls.js | |
parent | d47bf478c722a1dd4a3c57e235a4544df3ddc7c3 (diff) | |
download | sonarqube-d26ecc872afbded64666a266529affdcbb0557ad.tar.gz sonarqube-d26ecc872afbded64666a266529affdcbb0557ad.zip |
fix indentation
Diffstat (limited to 'server/sonar-web/src/main/js/helpers/urls.js')
-rw-r--r-- | server/sonar-web/src/main/js/helpers/urls.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/helpers/urls.js b/server/sonar-web/src/main/js/helpers/urls.js index 50cf5344589..52b155d1d47 100644 --- a/server/sonar-web/src/main/js/helpers/urls.js +++ b/server/sonar-web/src/main/js/helpers/urls.js @@ -119,7 +119,7 @@ export function getRulesUrl (query) { if (query) { const serializedQuery = Object.keys(query).map(criterion => ( `${encodeURIComponent(criterion)}=${encodeURIComponent( - query[criterion])}` + query[criterion])}` )).join('|'); // return a string (not { pathname }) to help react-router's Link handle this properly |