diff --git a/app/views/comments/_new.html.erb b/app/views/comments/_new.html.erb index 9f7b0eef8..40bdc285c 100644 --- a/app/views/comments/_new.html.erb +++ b/app/views/comments/_new.html.erb @@ -6,7 +6,7 @@
<%= form_with model: [@splat, @splat.comments.build], class: "flex flex-column gap full-width" do | form | %> - <%= form.text_area :body, class: "input", required: true, placeholder: "Type your comment…", rows: 4 %> + <%= form.text_area :body, class: "input", required: true, placeholder: Current.user == @splat.creator && @splat.comments.size == 1 ? "Add some notes…" : "Type your comment…", rows: 4 %> <%= form.button class: "btn btn--reversed center" do %> <%= image_tag "check.svg", aria: { hidden: "true" }, size: 24 %> diff --git a/app/views/splats/show.html.erb b/app/views/splats/show.html.erb index 3ccb94beb..a6d95a84b 100644 --- a/app/views/splats/show.html.erb +++ b/app/views/splats/show.html.erb @@ -24,17 +24,6 @@ <%= render @splat %>
-
-
- <%= simple_format @splat.body %> -
- - <%= tag.button class: "btn txt-small btn--reversed flex-item-no-shrink", style: "--btn-background: #{ @splat.color }" do %> - <%= image_tag "pencil.svg", aria: { hidden: true }, size: 24 %> - Edit <%= @splat.title %> notes - <% end %> -
-