Consistency: Capitalize hex values of sugested colors

This commit is contained in:
Robert Schilling 2014-08-15 11:02:05 +02:00
parent 27cf081e1b
commit 938eed1ef8
2 changed files with 8 additions and 8 deletions

View File

@ -14,13 +14,13 @@ module LabelsHelper
def suggested_colors
[
'#d9534f',
'#f0ad4e',
'#428bca',
'#5cb85c',
'#34495e',
'#7f8c8d',
'#8e44ad',
'#D9534F',
'#F0AD4E',
'#428BCA',
'#5CB85C',
'#34495E',
'#7F8C8D',
'#8E44AD',
'#FFECDB'
]
end

View File

@ -1,5 +1,5 @@
class Label < ActiveRecord::Base
DEFAULT_COLOR = '#428bca'
DEFAULT_COLOR = '#428BCA'
belongs_to :project
has_many :label_links, dependent: :destroy