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
8e76c5c8
Commit
8e76c5c8
authored
Nov 08, 2020
by
Fernando
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add tooltips for responses
* Add tooltip text
parent
d19eafe8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
8 deletions
+32
-8
ee/app/assets/javascripts/vulnerabilities/components/details.vue
...assets/javascripts/vulnerabilities/components/details.vue
+32
-8
No files found.
ee/app/assets/javascripts/vulnerabilities/components/details.vue
View file @
8e76c5c8
<
script
>
import
{
GlLink
,
GlSprintf
}
from
'
@gitlab/ui
'
;
import
{
GlLink
,
GlSprintf
,
GlTooltipDirective
,
GlIcon
}
from
'
@gitlab/ui
'
;
import
SeverityBadge
from
'
ee/vue_shared/security_reports/components/severity_badge.vue
'
;
import
CodeBlock
from
'
~/vue_shared/components/code_block.vue
'
;
import
{
__
}
from
'
~/locale
'
;
...
...
@@ -7,7 +7,10 @@ import DetailItem from './detail_item.vue';
export
default
{
name
:
'
VulnerabilityDetails
'
,
components
:
{
CodeBlock
,
GlLink
,
SeverityBadge
,
DetailItem
,
GlSprintf
},
components
:
{
CodeBlock
,
GlLink
,
SeverityBadge
,
DetailItem
,
GlSprintf
,
GlIcon
},
directives
:
{
GlTooltip
:
GlTooltipDirective
,
},
props
:
{
vulnerability
:
{
type
:
Object
,
...
...
@@ -289,16 +292,26 @@ export default {
<div
v-if=
"responseData.length || recordedResponseData.length"
class=
"row"
>
<section
v-if=
"responseData.length"
:class=
"re
cordedRe
sponseData.length ? 'col-6' : 'col'"
v-if=
"re
cordedRe
sponseData.length"
:class=
"responseData.length ? 'col-6' : 'col'"
data-testid=
"response"
>
<ul>
<detail-item
v-for=
"({ label, isCode, content }, index) in responseData"
v-for=
"({ label, isCode, content }, index) in re
cordedRe
sponseData"
:key=
"`${index}:${label}`"
:sprintf-message=
"label"
>
<gl-icon
v-gl-tooltip
name=
"information-o"
class=
"gl-hover-cursor-pointer gl-mr-3"
:title=
"
s__(
'Vulnerability|The unmodified response is the original response that had no mutations done to the request',
)
"
/>
<code-block
v-if=
"isCode"
class=
"mt-1"
:code=
"content"
max-height=
"225px"
/>
<
template
v-else
>
{{
content
}}
...
...
@@ -308,16 +321,27 @@ export default {
</section>
<section
v-if=
"re
cordedRe
sponseData.length"
:class=
"responseData.length ? 'col-6' : 'col'"
v-if=
"responseData.length"
:class=
"re
cordedRe
sponseData.length ? 'col-6' : 'col'"
data-testid=
"response"
>
<ul>
<detail-item
v-for=
"({ label, isCode, content }, index) in re
cordedRe
sponseData"
v-for=
"({ label, isCode, content }, index) in responseData"
:key=
"`${index}:${label}`"
:sprintf-message=
"label"
>
<gl-icon
v-gl-tooltip
name=
"information-o"
:size=
"16"
class=
"gl-hover-cursor-pointer gl-mr-3"
:title=
"
s__(
'Vulnerability|Actual received response is the one received when this fault was detected',
)
"
/>
<code-block
v-if=
"isCode"
class=
"mt-1"
:code=
"content"
max-height=
"225px"
/>
<
template
v-else
>
{{
content
}}
...
...
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