Browse Source

SONAR-20742 Use utf-8 operators ≤ and ≥ rather than <= and >=

tags/10.3.0.82913
7PH 7 months ago
parent
commit
674f6ea282

+ 1
- 1
server/sonar-web/src/main/js/apps/overview/branches/MeasuresCardPercent.tsx View File

@@ -96,7 +96,7 @@ export default function MeasuresCardPercent(
errorRequireLabel = intl.formatMessage(
{ id: 'overview.quality_gate.required_x' },
{
operator: failedCondition.op === 'GT' ? '<=' : '>=',
operator: failedCondition.op === 'GT' ? '≤' : '≥',
value: formatMeasure(
failedCondition.level === 'ERROR' ? failedCondition.error : failedCondition.warning,
MetricType.Percent,

Loading…
Cancel
Save