ソースを参照

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,

読み込み中…
キャンセル
保存