<% if bubble.image.attached? %>
<%= tag.label class: "btn btn--plain", style: "--btn-icon-size: 3em; margin-block-start: -0.5em; margin-inline-end: -0.2em", data: { action: "click->upload-preview#clear click->form#submit", upload_preview_target: "button" } do %>
diff --git a/app/views/bubbles/edit.html.erb b/app/views/bubbles/edit.html.erb
index da7fabc50..f630c24ba 100644
--- a/app/views/bubbles/edit.html.erb
+++ b/app/views/bubbles/edit.html.erb
@@ -1,5 +1,5 @@
<%= turbo_frame_tag @bubble, :edit do %>
- <%= form_with model: @bubble, class: "flex flex-column gap full-width", data: { controller: "form" } do | form | %>
+ <%= form_with model: @bubble, class: "flex flex-column gap full-width", data: { controller: "form" } do |form| %>
<%= form.label :title, class: "flex flex-column justify-center align-center" do %>
<%= form.text_area :title, class: "input input--textara txt-align-center full-width borderless",
required: true, rows: 5, autofocus: true, placeholder: "Name it…",
diff --git a/app/views/bubbles/new.html.erb b/app/views/bubbles/new.html.erb
index e3d7c7c92..755248bc1 100644
--- a/app/views/bubbles/new.html.erb
+++ b/app/views/bubbles/new.html.erb
@@ -1,6 +1,6 @@
- <%= form_with model: @bubble, class: "flex flex-column gap full-width" do | form | %>
+ <%= form_with model: @bubble, class: "flex flex-column gap full-width" do |form| %>
<%= form.text_area :title, class: "input full-width borderless", required: true, placeholder: "Name it…", rows: 4, autofocus: true %>
diff --git a/app/views/comments/_new.html.erb b/app/views/comments/_new.html.erb
index aa79b040c..3d3d7c726 100644
--- a/app/views/comments/_new.html.erb
+++ b/app/views/comments/_new.html.erb
@@ -6,7 +6,7 @@
<%= Current.user.name %>
- <%= form_with model: Comment.new, url: bubble_comments_path(@bubble), class: "flex flex-column gap full-width" do | form | %>
+ <%= form_with model: Comment.new, url: bubble_comments_path(@bubble), class: "flex flex-column gap full-width" do |form| %>
<%= form.text_area :body, class: "input", required: true, rows: 4,
placeholder: (@bubble.comments.empty? && @bubble.creator == Current.user) ? "Add some notes…" : "Type your comment…" %>