From 78ef6de5197c8eef2bcce6409fd43f2bfb52d940 Mon Sep 17 00:00:00 2001 From: Marius BALTEANU Date: Wed, 20 Jan 2016 23:39:29 +0000 Subject: added missing classes --- app/helpers/issues_helper.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/helpers/issues_helper.rb b/app/helpers/issues_helper.rb index 292f7fe..15efdfb 100644 --- a/app/helpers/issues_helper.rb +++ b/app/helpers/issues_helper.rb @@ -112,9 +112,9 @@ module IssuesHelper s << content_tag('tr', content_tag('td', check_box_tag("ids[]", child.id, false, :id => nil), :class => 'checkbox') + content_tag('td', link_to_issue(child, :project => (issue.project_id != child.project_id)), :class => 'subject', :style => 'width: 50%') + - content_tag('td', h(child.status)) + - content_tag('td', link_to_user(child.assigned_to)) + - content_tag('td', progress_bar(child.done_ratio)), + content_tag('td', h(child.status), :class => 'status') + + content_tag('td', link_to_user(child.assigned_to), :class => 'assigned_to') + + content_tag('td', progress_bar(child.done_ratio), :class=> 'done_ratio'), :class => css) end s << '' -- 2.1.4