From ad947bc70591ea2453a1db9fd248284e369f8695 Mon Sep 17 00:00:00 2001 From: Javier Castro Date: Sun, 5 May 2013 10:27:31 -0300 Subject: [PATCH] Fix missing div container for nice css styling --- app/views/search/_result.html.haml | 1 + 1 file changed, 1 insertion(+) diff --git a/app/views/search/_result.html.haml b/app/views/search/_result.html.haml index 33b632527f2..12ead3bf67c 100644 --- a/app/views/search/_result.html.haml +++ b/app/views/search/_result.html.haml @@ -38,6 +38,7 @@ = link_to project_blob_path(snippet.project, tree_join(snippet.tree, snippet.filename), :anchor => "L" + snippet.startline.to_s) do %strong.term = snippet.filename + .file_holder .file_content.code %div{class: user_color_scheme_class} = raw snippet.colorize( formatter: :gitlab, options: { first_line_number: snippet.startline } )