diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-05-07 19:26:41 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-05-07 19:26:41 +0300 |
commit | 03441769dfc09776eb8511275a3f492ded1a7c42 (patch) | |
tree | bfc6ed0dae6c8e73a43eae071daf7b7753acb9a0 /app/views/issues | |
parent | be68cc461755752697642c58154781ae4ec9ab31 (diff) | |
download | gitlab-ce-03441769dfc09776eb8511275a3f492ded1a7c42.tar.gz |
Include default labels in issues autocomplete etc. Show colored labels on issues show page
Diffstat (limited to 'app/views/issues')
-rw-r--r-- | app/views/issues/show.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/issues/show.html.haml b/app/views/issues/show.html.haml index 67fe89a761b..2e204b8240d 100644 --- a/app/views/issues/show.html.haml +++ b/app/views/issues/show.html.haml @@ -47,7 +47,7 @@ .pull-right - @issue.labels.each do |label| - %span.label + %span{class: "label #{label_css_class(label.name)}"} %i.icon-tag = label.name |