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

@@ -1,13 +1,13 @@
<% if topics.any? %>
<div class="row column">
<div class="order">
<%= render 'shared/wide_order_selector', i18n_namespace: "comments" %>
<%= render "shared/wide_order_selector", i18n_namespace: "comments" %>
</div>
</div>
<% else %>
<%= render 'topics/informative_text', topics: topics %>
<%= render "topics/informative_text", topics: topics %>
<% end %>
<% topics.each do |topic| %>
<%= render 'topics/topic', topic: topic %>
<%= render "topics/topic", topic: topic %>
<% end %>