diff options
author | Stas Vilchik <stas.vilchik@sonarsource.com> | 2017-09-19 09:47:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-19 09:47:43 +0200 |
commit | 1fac03c980680556f3e05c694e17d2106a4ae0da (patch) | |
tree | 881af7aeb0da880a0f0645aa2cfae20761487155 /server | |
parent | 58c5f2d0729d2fb11ec100123b0311db0f8df4b1 (diff) | |
download | sonarqube-1fac03c980680556f3e05c694e17d2106a4ae0da.tar.gz sonarqube-1fac03c980680556f3e05c694e17d2106a4ae0da.zip |
fix quality flow
Diffstat (limited to 'server')
-rw-r--r-- | server/sonar-web/src/main/js/apps/projects/query.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/projects/query.ts b/server/sonar-web/src/main/js/apps/projects/query.ts index b64a34fda81..18d39c4ed9a 100644 --- a/server/sonar-web/src/main/js/apps/projects/query.ts +++ b/server/sonar-web/src/main/js/apps/projects/query.ts @@ -241,7 +241,6 @@ function pushMetricToArray( conditionsArray: string[], convertFunction: (metric: string, value: any) => string ): void { - query.foo; const metric = mapPropertyToMetric(property); if (query[property] != null && metric) { conditionsArray.push(convertFunction(metric, query[property])); |