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 { ...@@ -8,6 +8,7 @@ import {
GlTooltipDirective, GlTooltipDirective,
GlTooltip, GlTooltip,
GlBadge, GlBadge,
GlSafeHtmlDirective as SafeHtml,
} from '@gitlab/ui'; } from '@gitlab/ui';
import { VISIBILITY_TYPE_ICON, GROUP_VISIBILITY_TYPE } from '~/groups/constants'; import { VISIBILITY_TYPE_ICON, GROUP_VISIBILITY_TYPE } from '~/groups/constants';
import { __ } from '~/locale'; import { __ } from '~/locale';
...@@ -24,6 +25,7 @@ export default { ...@@ -24,6 +25,7 @@ export default {
}, },
directives: { directives: {
GlTooltip: GlTooltipDirective, GlTooltip: GlTooltipDirective,
SafeHtml,
}, },
props: { props: {
group: { group: {
...@@ -120,7 +122,7 @@ export default { ...@@ -120,7 +122,7 @@ export default {
</span> </span>
</div> </div>
<div v-if="group.description" class="description"> <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> </div>
<div class="gl-display-flex gl-flex-shrink-0"> <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