Fix project search showing always no results if no merge requests matches

Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
This commit is contained in:
Dmitriy Zaporozhets 2014-08-11 12:48:00 +03:00
parent bdb9340e4d
commit d3067379a4
No known key found for this signature in database
GPG Key ID: 627C5F589F467F17
1 changed files with 2 additions and 2 deletions

View File

@ -15,10 +15,10 @@
- else
= render partial: "search/results/empty", :locals => { message: "We couldn't find any matching code" }
- else
- if (@search_results[:merge_requests] || @search_results[:issues] || @search_results[:notes]).length > 0
- if @search_results[:merge_requests].present? || @search_results[:issues].present? || @search_results[:notes].present?
%ul.bordered-list
= render partial: "search/results/merge_request", collection: @search_results[:merge_requests]
= render partial: "search/results/issue", collection: @search_results[:issues]
= render partial: "search/results/note", collection: @search_results[:notes]
- else
= render partial: "search/results/empty", :locals => { message: "We couldn't find any issues, merge requests or notes" }
= render partial: "search/results/empty", locals: { message: "We couldn't find any issues, merge requests or notes" }