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>2023-04-11 03:14:54 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-04-11 03:14:54 +0300
commit2546306238465366ac0f0c8038ac4443dc82189e (patch)
tree4815bf6b878f98bdf6a7ade1f538dbfe96a05eed /app/assets/javascripts
parentb61136518a6b08100f931f5d995a5c08968904e1 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts')
-rw-r--r--app/assets/javascripts/performance_bar/components/performance_bar_app.vue10
1 files changed, 7 insertions, 3 deletions
diff --git a/app/assets/javascripts/performance_bar/components/performance_bar_app.vue b/app/assets/javascripts/performance_bar/components/performance_bar_app.vue
index 4bd86d4982e..2c30467a026 100644
--- a/app/assets/javascripts/performance_bar/components/performance_bar_app.vue
+++ b/app/assets/javascripts/performance_bar/components/performance_bar_app.vue
@@ -217,9 +217,13 @@ export default {
}}</gl-link>
</div>
<div v-if="currentRequest.details" id="peek-download" class="view">
- <gl-link class="gl-text-blue-200" :download="downloadName" :href="downloadPath">{{
- s__('PerformanceBar|Download')
- }}</gl-link>
+ <gl-link
+ class="gl-text-blue-200"
+ is-unsafe-link
+ :download="downloadName"
+ :href="downloadPath"
+ >{{ s__('PerformanceBar|Download') }}</gl-link
+ >
</div>
<div
v-if="currentRequest.details && env === 'development'"