Skip to content

Commit e191fa7

Browse files
committed
[RAILS] Changed the view in the example application to use the helper method for suggestions
Simplify the view code and use the `terms` helper.
1 parent c7a7ad9 commit e191fa7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

elasticsearch-rails/lib/rails/templates/index.html.dsl.erb

+3-3
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@
4747
<hr>
4848
</div>
4949

50-
<% if @articles.size < 1 && @articles.response.suggest.present? %>
50+
<% if @articles.size < 1 && @articles.response.suggestions.present? %>
5151
<div class="col-md-12">
5252
<p class="alert alert-warning">
5353
No documents have been found.
54-
<% if suggestions['suggest_title'].present? || suggestions['suggest_body'].present? %>
54+
<% if @articles.response.suggestions.terms.present? %>
5555
Maybe you mean
56-
<%= suggestions.map { |k,v| v.first['options'] }.flatten.map {|v| v['text']}.uniq.map do |term|
56+
<%= @articles.response.suggestions.terms.map do |term|
5757
link_to term, search_path(params.except(:controller, :action).merge q: term)
5858
end.to_sentence(last_word_connector: ' or ').html_safe %>?
5959
<% end %>

0 commit comments

Comments
 (0)