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/components/measure/utils.ts | |
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/components/measure/utils.ts')
-rw-r--r-- | server/sonar-web/src/main/js/components/measure/utils.ts | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/server/sonar-web/src/main/js/components/measure/utils.ts b/server/sonar-web/src/main/js/components/measure/utils.ts index 626c65f552f..e45496fbd1a 100644 --- a/server/sonar-web/src/main/js/components/measure/utils.ts +++ b/server/sonar-web/src/main/js/components/measure/utils.ts @@ -17,13 +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 { - getRatingTooltip as nextGetRatingTooltip, - isDiffMetric, - Measure, - MeasureEnhanced -} from '../../helpers/measures'; -import { Metric } from '../../app/types'; +import { getRatingTooltip as nextGetRatingTooltip, isDiffMetric } from '../../helpers/measures'; +import { Metric, Measure, MeasureEnhanced } from '../../app/types'; const KNOWN_RATINGS = ['sqale_rating', 'reliability_rating', 'security_rating']; |