Skip to content

Commit 6ff840e

Browse files
authored
Fix indentation in application project_info view (#14844)
## Summary of the problem <!-- Why are these changes being made? What problem does it solve? Link any related issues to provide more details. --> 17c7664 added some bad formatting causing erb_lint check to fail. ## Describe your changes <!-- Explain your thought process to the solution and provide a quick summary of the changes. --> Fix the hash indentation <!-- If there are any visual changes, please attach images, videos, or gifs. -->
1 parent bc61ff2 commit 6ff840e

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

app/views/event/applications/project_info.html.erb

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
<div
1818
class="card card--outline mb-6"
1919
x-data="application_project_info(<%= {
20-
has_website: @application.website_url.present? ? "true" : "false",
21-
has_political: @application.political_description.present? ? "true" : "false",
22-
teenager: @application.teen_led? ? "true" : "false",
23-
committed: @application.committed_amount,
24-
description: @application.description
25-
}.to_json %>)">
20+
has_website: @application.website_url.present? ? "true" : "false",
21+
has_political: @application.political_description.present? ? "true" : "false",
22+
teenager: @application.teen_led? ? "true" : "false",
23+
committed: @application.committed_amount,
24+
description: @application.description
25+
}.to_json %>)">
2626
<div class="field">
2727
<%= form.label :name do %>
2828
Project name <span class="text-primary">*</span>

0 commit comments

Comments
 (0)