From: Marius Balteanu Date: Mon, 26 Feb 2024 21:14:47 +0000 (+0000) Subject: Subprojects checkbox should be shown in Activity and Roadmap sidebars only if the... X-Git-Tag: 6.0.0~394 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=0c31799517df95dbac9162586331594ef5ba1d8b;p=redmine.git Subprojects checkbox should be shown in Activity and Roadmap sidebars only if the project has visible descendants (#39995). Patch by Holger Just (@hjust) and Marius BALTEANU (@marius.balteanu). git-svn-id: https://svn.redmine.org/redmine/trunk@22739 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/views/activities/index.html.erb b/app/views/activities/index.html.erb index cb0bef9dc..e5176d859 100644 --- a/app/views/activities/index.html.erb +++ b/app/views/activities/index.html.erb @@ -50,7 +50,7 @@ <% end %> -<% if @project && @project.descendants.active.any? %> +<% if @project && @project.descendants.visible.any? %> <%= hidden_field_tag 'with_subprojects', 0, :id => nil %>

<% end %> diff --git a/app/views/versions/_sidebar.html.erb b/app/views/versions/_sidebar.html.erb index aecb7d131..809b60ded 100644 --- a/app/views/versions/_sidebar.html.erb +++ b/app/views/versions/_sidebar.html.erb @@ -20,7 +20,7 @@ <%= check_box_tag "completed", 1, params[:completed] %> <%= l(:label_show_completed_versions) %> - <% if @project.descendants.active.any? %> + <% if @project.descendants.visible.any? %>
  • <%= hidden_field_tag 'with_subprojects', 0, :id => nil %>