Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-08-19 00:09:57 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-08-19 00:09:57 +0300
commitbfce95a4c5e9d71ed523f48f3fb901d2b7af60f7 (patch)
tree6bada22ff3863edec03f928f8edcf19c6e7107f1 /app/assets/javascripts/prometheus_metrics
parent85f7fa54f404f28b0f351c2be0f7a6e9d74fe65f (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/prometheus_metrics')
-rw-r--r--app/assets/javascripts/prometheus_metrics/prometheus_metrics.js9
1 files changed, 4 insertions, 5 deletions
diff --git a/app/assets/javascripts/prometheus_metrics/prometheus_metrics.js b/app/assets/javascripts/prometheus_metrics/prometheus_metrics.js
index 59d47ae4155..7fc1b18bf71 100644
--- a/app/assets/javascripts/prometheus_metrics/prometheus_metrics.js
+++ b/app/assets/javascripts/prometheus_metrics/prometheus_metrics.js
@@ -87,16 +87,15 @@ export default class PrometheusMetrics {
if (totalMonitoredMetrics === 0) {
const emptyCommonMetricsText = sprintf(
- s__(
- 'PrometheusService|<p class="text-tertiary">No <a href="%{docsUrl}">common metrics</a> were found</p>',
- ),
+ s__('PrometheusService|No %{docsUrlStart}common metrics%{docsUrlEnd} were found'),
{
- docsUrl: this.helpMetricsPath,
+ docsUrlStart: `<a href="${this.helpMetricsPath}">`,
+ docsUrlEnd: '</a>',
},
false,
);
this.$monitoredMetricsEmpty.empty();
- this.$monitoredMetricsEmpty.append(emptyCommonMetricsText);
+ this.$monitoredMetricsEmpty.append(`<p class="text-tertiary">${emptyCommonMetricsText}</p>`);
this.showMonitoringMetricsPanelState(PANEL_STATE.EMPTY);
} else {
const metricsCountText = sprintf(