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
b0a85291
Commit
b0a85291
authored
Nov 13, 2020
by
Simon Knox
Committed by
Olena Horal-Koretska
Nov 13, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Resolve "Iteration list background color wrong"
parent
4337dce3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
16 deletions
+19
-16
ee/app/assets/javascripts/iterations/components/iterations_list.vue
...ets/javascripts/iterations/components/iterations_list.vue
+14
-16
ee/changelogs/unreleased/273552-iteration-list-background-color-wrong.yml
...released/273552-iteration-list-background-color-wrong.yml
+5
-0
No files found.
ee/app/assets/javascripts/iterations/components/iterations_list.vue
View file @
b0a85291
...
...
@@ -29,21 +29,19 @@ export default {
</
script
>
<
template
>
<div
class=
"milestones mt-0"
>
<ul
v-if=
"iterations.length > 0"
class=
"content-list"
>
<li
v-for=
"iteration in iterations"
:key=
"iteration.id"
class=
"milestone"
>
<div
class=
"gl-mb-3"
>
<gl-link
:href=
"iteration.scopedPath || iteration.webPath"
>
<strong>
{{
iteration
.
title
}}
</strong>
</gl-link>
</div>
<div
class=
"text-secondary gl-mb-3"
>
{{
formatDate
(
iteration
.
startDate
)
}}
–
{{
formatDate
(
iteration
.
dueDate
)
}}
</div>
</li>
</ul>
<div
v-else
class=
"nothing-here-block"
>
{{
__
(
'
No iterations to show
'
)
}}
</div>
<ul
v-if=
"iterations.length > 0"
class=
"content-list"
>
<li
v-for=
"iteration in iterations"
:key=
"iteration.id"
class=
"gl-p-4!"
>
<div
class=
"gl-mb-3"
>
<gl-link
:href=
"iteration.scopedPath || iteration.webPath"
>
<strong>
{{
iteration
.
title
}}
</strong>
</gl-link>
</div>
<div
class=
"text-secondary"
>
{{
formatDate
(
iteration
.
startDate
)
}}
–
{{
formatDate
(
iteration
.
dueDate
)
}}
</div>
</li>
</ul>
<div
v-else
class=
"nothing-here-block"
>
{{
__
(
'
No iterations to show
'
)
}}
</div>
</
template
>
ee/changelogs/unreleased/273552-iteration-list-background-color-wrong.yml
0 → 100644
View file @
b0a85291
---
title
:
Fix gray background on iterations list page
merge_request
:
47153
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