From a1da96383b98ae9fb0986d8e8323482ffebfe277 Mon Sep 17 00:00:00 2001 From: Grégoire Aubert Date: Wed, 12 Jul 2017 13:13:42 +0200 Subject: SONAR-9403 Add a tooltip on the button to show the metric history on the measures page --- .../component-measures/details/MeasureDetailsHeader.js | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) (limited to 'server/sonar-web/src/main/js') diff --git a/server/sonar-web/src/main/js/apps/component-measures/details/MeasureDetailsHeader.js b/server/sonar-web/src/main/js/apps/component-measures/details/MeasureDetailsHeader.js index f2dad990a91..6b2d5324559 100644 --- a/server/sonar-web/src/main/js/apps/component-measures/details/MeasureDetailsHeader.js +++ b/server/sonar-web/src/main/js/apps/component-measures/details/MeasureDetailsHeader.js @@ -24,11 +24,12 @@ import LanguageDistribution from '../../../components/charts/LanguageDistributio import LeakPeriodLegend from '../components/LeakPeriodLegend'; import IssueTypeIcon from '../../../components/ui/IssueTypeIcon'; import HistoryIcon from '../../../components/icons-components/HistoryIcon'; +import Tooltip from '../../../components/controls/Tooltip'; import { ComplexityDistribution } from '../../../components/shared/complexity-distribution'; import { isDiffMetric } from '../../../helpers/measures'; import { TooltipsContainer } from '../../../components/mixins/tooltips-mixin'; import { getComponentMeasureHistory } from '../../../helpers/urls'; -import { getLocalizedMetricName } from '../../../helpers/l10n'; +import { getLocalizedMetricName, translate } from '../../../helpers/l10n'; export default function MeasureDetailsHeader({ component, @@ -44,11 +45,13 @@ export default function MeasureDetailsHeader({ {getLocalizedMetricName(metric)} {!isDiff && - - - } + + + + + } {isDiff && -- cgit v1.2.3