diff options
author | Grégoire Aubert <gregoire.aubert@sonarsource.com> | 2018-08-15 15:52:22 +0200 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2018-08-16 20:20:52 +0200 |
commit | 7509e0895c7db3c0c8f5715a9b273cb81262e268 (patch) | |
tree | e4151875ab6c0ccd8fc3b286f787edbca073bf4e /server/sonar-web/src/main/js/api | |
parent | 74832d02309d7b74698078306f06e67443ae645e (diff) | |
download | sonarqube-7509e0895c7db3c0c8f5715a9b273cb81262e268.tar.gz sonarqube-7509e0895c7db3c0c8f5715a9b273cb81262e268.zip |
SONAR-11140 Don't automatically select first file in project measures page
Also:
* Fix hidden selection when selecting a hidden file (best value)
* Fix load more spinner
Diffstat (limited to 'server/sonar-web/src/main/js/api')
-rw-r--r-- | server/sonar-web/src/main/js/api/measures.ts | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/api/measures.ts b/server/sonar-web/src/main/js/api/measures.ts index b5d1e649525..1102c39870c 100644 --- a/server/sonar-web/src/main/js/api/measures.ts +++ b/server/sonar-web/src/main/js/api/measures.ts @@ -19,8 +19,14 @@ */ import { getJSON, RequestData, postJSON, post } from '../helpers/request'; import throwGlobalError from '../app/utils/throwGlobalError'; -import { Measure, MeasurePeriod } from '../helpers/measures'; -import { Metric, CustomMeasure, Paging, BranchParameters } from '../app/types'; +import { + Metric, + CustomMeasure, + Paging, + BranchParameters, + Measure, + MeasurePeriod +} from '../app/types'; import { Period } from '../helpers/periods'; export function getMeasures( |