From 8708ff04c1e0836bea73dc0d3365cbfca8e91038 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sat, 5 Apr 2025 15:27:40 +0200 Subject: [PATCH] Fix indention --- app/views/bubbles/pins/show.html.erb | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/app/views/bubbles/pins/show.html.erb b/app/views/bubbles/pins/show.html.erb index 9039cc92f..cbd2b75a0 100644 --- a/app/views/bubbles/pins/show.html.erb +++ b/app/views/bubbles/pins/show.html.erb @@ -1,13 +1,13 @@ <%= turbo_frame_tag dom_id(@bubble, :pin) do %> <% if @bubble.pinned_by? Current.user %> - <%= button_to bucket_bubble_pin_path(@bubble.bucket, @bubble), method: :delete, class: "btn btn--reversed" do %> - <%= icon_tag "pinned" %> - Un-pin this card - <% end %> + <%= button_to bucket_bubble_pin_path(@bubble.bucket, @bubble), method: :delete, class: "btn btn--reversed" do %> + <%= icon_tag "pinned" %> + Un-pin this card + <% end %> <% else %> - <%= button_to bucket_bubble_pin_path(@bubble.bucket, @bubble), class: "btn" do %> - <%= icon_tag "unpinned" %> - Pin this card - <% end %> + <%= button_to bucket_bubble_pin_path(@bubble.bucket, @bubble), class: "btn" do %> + <%= icon_tag "unpinned" %> + Pin this card + <% end %> <% end %> <% end %>