# HG changeset patch # User Marcin Kuzminski # Date 2013-03-27 17:50:25 # Node ID e8db9fe4cca3f5ab5ef792e638e3dc00eb052d94 # Parent 6bc4b63bb225e478b2212c90c074c08653c70921 fix branch UI issue for git repos diff --git a/rhodecode/templates/compare/compare_cs.html b/rhodecode/templates/compare/compare_cs.html --- a/rhodecode/templates/compare/compare_cs.html +++ b/rhodecode/templates/compare/compare_cs.html @@ -19,7 +19,11 @@ ${h.hidden('revisions',cs.raw_id)} %endif - ${cs.branch} + + %if cs.branch: + ${cs.branch} + %endif +
${h.urlify_commit(h.shorter(cs.message, 60),c.repo_name)}
%endfor