Commit 97eb7cbc authored by Martin Wortschack's avatar Martin Wortschack

Merge branch '241851-Replace-v-html' into 'master'

Replace v-html with v-safe-html in fork_groups_list_item.vue

See merge request gitlab-org/gitlab!41143
parents e5d398ec 0e1a23b9
<script>
/* eslint-disable vue/no-v-html */
import {
GlLink,
GlButton,
......@@ -8,6 +7,7 @@ import {
GlTooltipDirective,
GlTooltip,
GlBadge,
GlSafeHtmlDirective as SafeHtml,
} from '@gitlab/ui';
import { VISIBILITY_TYPE_ICON, GROUP_VISIBILITY_TYPE } from '~/groups/constants';
import { __ } from '~/locale';
......@@ -24,6 +24,7 @@ export default {
},
directives: {
GlTooltip: GlTooltipDirective,
SafeHtml,
},
props: {
group: {
......@@ -120,7 +121,7 @@ export default {
</span>
</div>
<div v-if="group.description" class="description">
<span v-html="group.markdown_description"> </span>
<span v-safe-html="group.markdown_description"> </span>
</div>
</div>
<div class="gl-display-flex gl-flex-shrink-0">
......
---
title: Replace v-html with v-safe-html in fork_groups_list_item.vue
merge_request: 41143
author: Kev @KevSlashNull
type: other
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment