Commit 5fa3aeb0 authored by Jacob Schatz's avatar Jacob Schatz

Merge branch 'search-commit-ui-fix' into 'master'

Fixed commit search UI

## What does this MR do?

Fixes the UI for commits in search.

If the scope of the search is commits then it renders the list in a `ul` to match the same styling as that on the commits UI.

## Screenshots (if relevant)

![Screen_Shot_2016-09-05_at_15.30.12](/uploads/f567a224be44d5a9b015ac5d1c399bd7/Screen_Shot_2016-09-05_at_15.30.12.png)

## What are the relevant issue numbers?

Closes #21868

See merge request !6205
parents fe3692ac 0ffacb8e
......@@ -10,12 +10,16 @@
in group #{link_to @group.name, @group}
.results.prepend-top-10
.search-results
- if @scope == 'projects'
.term
= render 'shared/projects/list', projects: @search_objects
- else
= render partial: "search/results/#{@scope.singularize}", collection: @search_objects
- if @scope == 'commits'
%ul.list-unstyled
= render partial: "search/results/commit", collection: @search_objects
- else
.search-results
- if @scope == 'projects'
.term
= render 'shared/projects/list', projects: @search_objects
- else
= render partial: "search/results/#{@scope.singularize}", collection: @search_objects
- if @scope != 'projects'
= paginate(@search_objects, theme: 'gitlab')
.search-result-row
= render 'projects/commits/commit', project: @project, commit: commit
= render 'projects/commits/commit', project: @project, commit: commit
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment