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
95e6eead
Commit
95e6eead
authored
Feb 03, 2021
by
Heinrich Lee Yu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix header icon
parent
20f9bdf7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
20 deletions
+12
-20
app/assets/javascripts/boards/components/board_list_header.vue
...ssets/javascripts/boards/components/board_list_header.vue
+6
-11
app/assets/javascripts/boards/components/board_list_header_deprecated.vue
...cripts/boards/components/board_list_header_deprecated.vue
+6
-9
No files found.
app/assets/javascripts/boards/components/board_list_header.vue
View file @
95e6eead
...
...
@@ -86,21 +86,16 @@ export default {
return
!
this
.
disabled
&&
this
.
listType
!==
ListType
.
closed
;
},
showMilestoneListDetails
()
{
return
(
this
.
listType
===
ListType
.
milestone
&&
this
.
list
.
milestone
&&
(
!
this
.
list
.
collapsed
||
!
this
.
isSwimlanesHeader
)
);
return
this
.
listType
===
ListType
.
milestone
&&
this
.
list
.
milestone
&&
this
.
showListDetails
;
},
showAssigneeListDetails
()
{
return
(
this
.
listType
===
ListType
.
assignee
&&
(
!
this
.
list
.
collapsed
||
!
this
.
isSwimlanesHeader
)
);
return
this
.
listType
===
ListType
.
assignee
&&
this
.
showListDetails
;
},
showIterationListDetails
()
{
return
(
this
.
listType
===
ListType
.
iteration
&&
(
!
this
.
list
.
collapsed
||
!
this
.
isSwimlanesHeader
)
);
return
this
.
listType
===
ListType
.
iteration
&&
this
.
showListDetails
;
},
showListDetails
()
{
return
!
this
.
list
.
collapsed
||
!
this
.
isSwimlanesHeader
;
},
issuesCount
()
{
return
this
.
list
.
issuesCount
;
...
...
app/assets/javascripts/boards/components/board_list_header_deprecated.vue
View file @
95e6eead
...
...
@@ -78,19 +78,16 @@ export default {
return
!
this
.
disabled
&&
this
.
listType
!==
ListType
.
closed
;
},
showMilestoneListDetails
()
{
return
(
this
.
list
.
type
===
'
milestone
'
&&
this
.
list
.
milestone
&&
(
this
.
list
.
isExpanded
||
!
this
.
isSwimlanesHeader
)
);
return
this
.
list
.
type
===
'
milestone
'
&&
this
.
list
.
milestone
&&
this
.
showListDetails
;
},
showAssigneeListDetails
()
{
return
this
.
list
.
type
===
'
assignee
'
&&
(
this
.
list
.
isExpanded
||
!
this
.
isSwimlanesHeader
)
;
return
this
.
list
.
type
===
'
assignee
'
&&
this
.
showListDetails
;
},
showIterationListDetails
()
{
return
(
this
.
listType
===
ListType
.
iteration
&&
(
this
.
list
.
isExpanded
||
!
this
.
isSwimlanesHeader
)
);
return
this
.
listType
===
ListType
.
iteration
&&
this
.
showListDetails
;
},
showListDetails
()
{
return
this
.
list
.
isExpanded
||
!
this
.
isSwimlanesHeader
;
},
issuesCount
()
{
return
this
.
list
.
issuesSize
;
...
...
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