From 5d25f3d9b12203c3010ba92d7dacfcbeaf51781e Mon Sep 17 00:00:00 2001 From: Marin Jankovski Date: Tue, 8 Jul 2014 16:12:06 +0200 Subject: [PATCH] Differentiate between dirs, files and general code. --- app/views/projects/commits/_commit.html.haml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/app/views/projects/commits/_commit.html.haml b/app/views/projects/commits/_commit.html.haml index 106d95ee10d..20fe2688fb4 100644 --- a/app/views/projects/commits/_commit.html.haml +++ b/app/views/projects/commits/_commit.html.haml @@ -7,10 +7,13 @@ - if commit.description? %a.text-expander.js-toggle-button ... - - if @repo.blob_at(commit.id, @path) + - if @repo && @repo.blob_at(commit.id, @path) = link_to "Browse File »", project_blob_path(project, tree_join(commit.id, @path)), class: "pull-right" - - else + - elsif @path.blank? = link_to "Browse Code »", project_tree_path(project, commit), class: "pull-right" + - else + = link_to "Browse Dir »", project_tree_path(project, tree_join(commit.id, @path)), class: "pull-right" + .notes_count - if @note_counts - note_count = @note_counts.fetch(commit.id, 0)