diff options
Diffstat (limited to 'app/helpers/application_helper.rb')
-rw-r--r-- | app/helpers/application_helper.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 394f9b666..45ce68988 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -420,6 +420,7 @@ module ApplicationHelper end end classes = (ancestors.empty? ? 'root' : 'child') + classes += ' archived' if project.archived? s << "<li class='#{classes}'><div class='#{classes}'>" s << h(block_given? ? capture(project, &block) : project.name) s << "</div>\n" |