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
5297157d
Commit
5297157d
authored
Jun 16, 2020
by
Savas Vedova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix column styling
- Add changelog
parent
7b4340f1
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
4 deletions
+15
-4
ee/app/assets/javascripts/vulnerabilities/components/vulnerability_list.vue
...scripts/vulnerabilities/components/vulnerability_list.vue
+10
-4
ee/changelogs/unreleased/217593-fix-column-width.yml
ee/changelogs/unreleased/217593-fix-column-width.yml
+5
-0
No files found.
ee/app/assets/javascripts/vulnerabilities/components/vulnerability_list.vue
View file @
5297157d
...
...
@@ -88,17 +88,17 @@ export default {
{
key
:
'
checkbox
'
,
class
:
this
.
checkboxClass
,
thClass
:
commonThClass
,
thClass
:
`gl-w-9
${
commonThClass
}
`
,
},
{
key
:
'
state
'
,
label
:
s__
(
'
Vulnerability|Status
'
),
thClass
:
`
gl-w-64
${
commonThClass
}
`
,
thClass
:
`
vulnerability-td
${
commonThClass
}
`
,
},
{
key
:
'
severity
'
,
label
:
s__
(
'
Vulnerability|Severity
'
),
thClass
:
`
gl-w-64
${
commonThClass
}
`
,
thClass
:
`
vulnerability-td
${
commonThClass
}
`
,
},
{
key
:
'
title
'
,
...
...
@@ -181,6 +181,7 @@ export default {
>
<template
#head
(
checkbox
)
>
<gl-form-checkbox
class=
"mr-0 mb-0"
:checked=
"hasSelectedAllVulnerabilities"
@
change=
"toggleAllVulnerabilities"
/>
...
...
@@ -188,7 +189,7 @@ export default {
<
template
#cell(checkbox)=
"{ item }"
>
<gl-form-checkbox
class=
"d-inline-block mr-0"
class=
"d-inline-block mr-0
mb-0
"
:checked=
"isSelected(item)"
@
change=
"toggleVulnerability(item)"
/>
...
...
@@ -248,3 +249,8 @@ export default {
</gl-table>
</div>
</template>
<
style
>
.vulnerability-td
{
width
:
8rem
;
}
</
style
>
ee/changelogs/unreleased/217593-fix-column-width.yml
0 → 100644
View file @
5297157d
---
title
:
Fix column styling in the vulnerability list
merge_request
:
34619
author
:
type
:
fixed
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