Fix erb lint errors

This commit is contained in:
Dombi Attila
2026-06-12 15:09:20 +03:00
parent 3752158c08
commit 549678ba86
@@ -74,14 +74,12 @@ See COPYRIGHT and LICENSE files for more details.
<% end %>
<% buckets.each do |bucket| %>
<%=
render Backlogs::BucketComponent.new(
project:,
backlog_bucket: bucket,
work_packages: work_packages_for(bucket),
current_user:
)
%>
<%= render Backlogs::BucketComponent.new(
project:,
backlog_bucket: bucket,
work_packages: work_packages_for(bucket),
current_user:
) %>
<% end %>
<% if backlog_filters.show_inbox? %>
@@ -89,7 +87,6 @@ See COPYRIGHT and LICENSE files for more details.
work_packages: work_packages_for_inbox,
project:,
current_user:
)
%>
) %>
<% end %>
<% end %>