Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
78059ea8
Commit
78059ea8
authored
Sep 02, 2020
by
Kev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replace v-html with v-safe-html in suggestions.vue
parent
4e0d6868
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
app/assets/javascripts/vue_shared/components/markdown/suggestions.vue
...avascripts/vue_shared/components/markdown/suggestions.vue
+5
-2
No files found.
app/assets/javascripts/vue_shared/components/markdown/suggestions.vue
View file @
78059ea8
<
script
>
/* eslint-disable vue/no-v-html */
import
Vue
from
'
vue
'
;
import
{
GlSafeHtmlDirective
as
SafeHtml
}
from
'
@gitlab/ui
'
;
import
{
__
}
from
'
~/locale
'
;
import
SuggestionDiff
from
'
./suggestion_diff.vue
'
;
import
{
deprecatedCreateFlash
as
Flash
}
from
'
~/flash
'
;
export
default
{
directives
:
{
SafeHtml
,
},
props
:
{
lineType
:
{
type
:
String
,
...
...
@@ -116,6 +119,6 @@ export default {
<
template
>
<div>
<div
class=
"flash-container js-suggestions-flash"
></div>
<div
v-show=
"isRendered"
ref=
"container"
class=
"md"
v-html=
"noteHtml
"
></div>
<div
v-show=
"isRendered"
ref=
"container"
v-safe-html=
"noteHtml"
class=
"md
"
></div>
</div>
</
template
>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment