Change issue board defaults
This commit is contained in:
parent
9a13f885a9
commit
f4c2f3a466
2 changed files with 4 additions and 8 deletions
|
@ -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' })
|
||||
]
|
||||
}
|
||||
},
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue