From 674f6ea2826398884b5b700ebb94b420d9561edf Mon Sep 17 00:00:00 2001 From: 7PH Date: Mon, 23 Oct 2023 10:26:27 +0200 Subject: [PATCH] =?utf8?q?SONAR-20742=20Use=20utf-8=20operators=20?= =?utf8?q?=E2=89=A4=20and=20=E2=89=A5=20rather=20than=20<=3D=20and=20>=3D?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- .../src/main/js/apps/overview/branches/MeasuresCardPercent.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/sonar-web/src/main/js/apps/overview/branches/MeasuresCardPercent.tsx b/server/sonar-web/src/main/js/apps/overview/branches/MeasuresCardPercent.tsx index 6b7da488f22..fed7c608dc3 100644 --- a/server/sonar-web/src/main/js/apps/overview/branches/MeasuresCardPercent.tsx +++ b/server/sonar-web/src/main/js/apps/overview/branches/MeasuresCardPercent.tsx @@ -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, -- 2.39.5