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>2021-09-02 12:11:35 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-09-02 12:11:35 +0300
commited0d55ded7a03c8d5da501d3c86b38084f695cae (patch)
tree8612868b90f496a1dacc29c1a7a78cd7d380a26b /app/assets/javascripts/performance_bar/components/request_warning.vue
parent951a32fcf3fc8766eae1430a389b77049410c371 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/performance_bar/components/request_warning.vue')
-rw-r--r--app/assets/javascripts/performance_bar/components/request_warning.vue6
1 files changed, 4 insertions, 2 deletions
diff --git a/app/assets/javascripts/performance_bar/components/request_warning.vue b/app/assets/javascripts/performance_bar/components/request_warning.vue
index 7fe6b088ebb..01d6e68e3b0 100644
--- a/app/assets/javascripts/performance_bar/components/request_warning.vue
+++ b/app/assets/javascripts/performance_bar/components/request_warning.vue
@@ -1,5 +1,4 @@
<script>
-/* eslint-disable vue/no-v-html */
import { GlPopover } from '@gitlab/ui';
import { glEmojiTag } from '~/emoji';
@@ -36,7 +35,10 @@ export default {
</script>
<template>
<span v-if="hasWarnings" class="gl-cursor-default">
- <span :id="htmlId" v-html="glEmojiTag('warning')"></span>
+ <span
+ :id="htmlId"
+ v-html="glEmojiTag('warning') /* eslint-disable-line vue/no-v-html */"
+ ></span>
<gl-popover placement="bottom" :target="htmlId" :content="warningMessage" />
</span>
</template>