# HG changeset patch # User Marcin Kuzminski # Date 1364406625 -3600 # Node ID e8db9fe4cca3f5ab5ef792e638e3dc00eb052d94 # Parent 6bc4b63bb225e478b2212c90c074c08653c70921 fix branch UI issue for git repos diff -r 6bc4b63bb225 -r e8db9fe4cca3 rhodecode/templates/compare/compare_cs.html --- a/rhodecode/templates/compare/compare_cs.html Wed Mar 27 18:47:40 2013 +0100 +++ b/rhodecode/templates/compare/compare_cs.html Wed Mar 27 18:50:25 2013 +0100 @@ -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