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> <script>
/* eslint-disable vue/no-v-html */
import { import {
GlLink, GlLink,
GlButton, GlButton,
...@@ -8,6 +7,7 @@ import { ...@@ -8,6 +7,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 +24,7 @@ export default { ...@@ -24,6 +24,7 @@ export default {
}, },
directives: { directives: {
GlTooltip: GlTooltipDirective, GlTooltip: GlTooltipDirective,
SafeHtml,
}, },
props: { props: {
group: { group: {
...@@ -120,7 +121,7 @@ export default { ...@@ -120,7 +121,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">
......
---
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