Commit 24c61fd3 authored by Kev's avatar Kev

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

parent b8910e6e
......@@ -8,6 +8,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 +25,7 @@ export default {
},
directives: {
GlTooltip: GlTooltipDirective,
SafeHtml,
},
props: {
group: {
......@@ -120,7 +122,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">
......
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