Skip to content

Commit

Permalink
Fix rubocop offenses
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandermeindl committed Jan 10, 2025
1 parent fb1777e commit feac497
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/helpers/issue_view_columns_issues_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def render_descendants_tree(issue)
issue_list(issue.descendants.visible.preload(:status, :priority, :tracker, :assigned_to).sort_by(&:lft)) do |child, level|
next if child.closed? && !issue_columns_with_closed_issues?

tr_classes = +"hascontextmenu #{child.css_classes} #{cycle 'odd', 'even'}"
tr_classes = "hascontextmenu #{child.css_classes} #{cycle 'odd', 'even'}"
tr_classes << " idnt idnt-#{level}" if level.positive?

buttons = if manage_relations
Expand Down

0 comments on commit feac497

Please sign in to comment.