瀏覽代碼

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

tags/10.3.0.82913
7PH 8 月之前
父節點
當前提交
674f6ea282
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      server/sonar-web/src/main/js/apps/overview/branches/MeasuresCardPercent.tsx

+ 1
- 1
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,

Loading…
取消
儲存