diff --git a/app/views/budgets/investments/_investment_show.html.erb b/app/views/budgets/investments/_investment_show.html.erb index 501b262e6..950b93b6a 100644 --- a/app/views/budgets/investments/_investment_show.html.erb +++ b/app/views/budgets/investments/_investment_show.html.erb @@ -13,12 +13,6 @@ <%= l investment.created_at.to_date %>  •  <%= investment.heading.name %> - - <% if current_user %> -  •  - <%= render 'follows/followable_button', followable: investment %> - <% end %> -
@@ -118,6 +112,9 @@ title: investment.title, url: budget_investment_url(budget_id: investment.budget_id, id: investment.id) } %> + + <%= render 'follows/followable_button', followable: investment if current_user %> + diff --git a/app/views/proposals/show.html.erb b/app/views/proposals/show.html.erb index 00c1cd17e..d5c83d9f5 100644 --- a/app/views/proposals/show.html.erb +++ b/app/views/proposals/show.html.erb @@ -53,9 +53,6 @@ <% if current_user %>  •  <%= render 'proposals/flag_actions', proposal: @proposal %> - -  •  - <%= render 'follows/followable_button', followable: @proposal %> <% end %> @@ -142,6 +139,9 @@ title: @proposal.title, url: proposal_url(@proposal) } %> + + <%= render 'follows/followable_button', followable: @proposal if current_user %> +