Use double quotes in app/views

This commit is contained in:
Julian Herrero
2019-03-14 17:14:54 +01:00
parent dbe99f058e
commit f6489bc604
81 changed files with 256 additions and 256 deletions

View File

@@ -12,7 +12,7 @@
</h2>
<% end %>
<%= render 'shared/wide_order_selector', i18n_namespace: "comments" %>
<%= render "shared/wide_order_selector", i18n_namespace: "comments" %>
<% if user_signed_in? %>
<% if comments_closed_for_commentable?(commentable) %>
@@ -26,7 +26,7 @@
<%= t("comments.verified_only", verify_account: link_to(t("comments.verify_account"), verification_path )).html_safe %>
</div>
<% elsif allow_comments %>
<%= render 'comments/form', { commentable: commentable,
<%= render "comments/form", { commentable: commentable,
parent_id: nil,
toggeable: false,
valuation: valuation } %>
@@ -41,7 +41,7 @@
<% end %>
<% comment_tree.root_comments.each do |comment| %>
<%= render 'comments/comment', { comment: comment,
<%= render "comments/comment", { comment: comment,
comment_flags: comment_flags,
valuation: valuation,
allow_votes: !valuation,