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
0
Merge Requests
0
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
Jérome Perrin
gitlab-ce
Commits
f4c2f3a4
Commit
f4c2f3a4
authored
Oct 06, 2016
by
Annabel Dunstone Gray
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change issue board defaults
parent
9a13f885
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
8 deletions
+4
-8
app/assets/javascripts/boards/components/board_blank_state.js.es6
...ts/javascripts/boards/components/board_blank_state.js.es6
+2
-4
app/services/boards/lists/generate_service.rb
app/services/boards/lists/generate_service.rb
+2
-4
No files found.
app/assets/javascripts/boards/components/board_blank_state.js.es6
View file @
f4c2f3a4
...
...
@@ -8,10 +8,8 @@
data () {
return {
predefinedLabels: [
new ListLabel({ title: 'Development', color: '#5CB85C' }),
new ListLabel({ title: 'Testing', color: '#F0AD4E' }),
new ListLabel({ title: 'Production', color: '#FF5F00' }),
new ListLabel({ title: 'Ready', color: '#FF0000' })
new ListLabel({ title: 'To Do', color: '#F0AD4E' }),
new ListLabel({ title: 'Doing', color: '#5CB85C' })
]
}
},
...
...
app/services/boards/lists/generate_service.rb
View file @
f4c2f3a4
...
...
@@ -25,10 +25,8 @@ module Boards
def
label_params
[
{
name:
'Development'
,
color:
'#5CB85C'
},
{
name:
'Testing'
,
color:
'#F0AD4E'
},
{
name:
'Production'
,
color:
'#FF5F00'
},
{
name:
'Ready'
,
color:
'#FF0000'
}
{
name:
'To Do'
,
color:
'#F0AD4E'
},
{
name:
'Doing'
,
color:
'#5CB85C'
}
]
end
end
...
...
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