From 549678ba86df5c84012d1180e0dbc095fc51495e Mon Sep 17 00:00:00 2001 From: Dombi Attila <83396+dombesz@users.noreply.github.com> Date: Fri, 12 Jun 2026 15:09:20 +0300 Subject: [PATCH] Fix erb lint errors --- .../backlogs/backlog_component.html.erb | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/modules/backlogs/app/components/backlogs/backlog_component.html.erb b/modules/backlogs/app/components/backlogs/backlog_component.html.erb index df561c0abc9..d3787cdd60a 100644 --- a/modules/backlogs/app/components/backlogs/backlog_component.html.erb +++ b/modules/backlogs/app/components/backlogs/backlog_component.html.erb @@ -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 %>