Skip to content

Commit

Permalink
[improve] Replaced hardcoded text with internationalized string. (#3035)
Browse files Browse the repository at this point in the history
Co-authored-by: tomsun28 <[email protected]>
  • Loading branch information
yunfan24 and tomsun28 authored Jan 30, 2025
1 parent e0c7b4e commit 4009525
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
<nz-table
*ngIf="!monitor && isTable"
nzSize="small"
nzNoResult="No Metrics Data"
[nzNoResult]="'monitor.detail.chart.no-data' | i18n"
[nzFrontPagination]="false"
[nzShowPagination]="false"
[nzData]="valueRows"
Expand Down Expand Up @@ -143,7 +143,7 @@
<nz-table
*ngIf="!monitor && !isTable"
nzSize="small"
nzNoResult="No Metrics Data"
[nzNoResult]="'monitor.detail.chart.no-data' | i18n"
[nzFrontPagination]="false"
[nzShowPagination]="false"
[nzData]="valueRows"
Expand Down

0 comments on commit 4009525

Please sign in to comment.