Skip to content

Commit

Permalink
Merge pull request #1396 from nh2/hash-length-12
Browse files Browse the repository at this point in the history
renderInputDiff: Increase git hash length 8 -> 12
  • Loading branch information
Mic92 authored Aug 20, 2024
2 parents c239737 + bc19e7c commit 4bb2f08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/root/common.tt
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ BLOCK renderInputDiff; %]
[% ELSIF bi1.uri == bi2.uri && bi1.revision != bi2.revision %]
[% IF bi1.type == "git" %]
<tr><td>
<b>[% bi1.name %]</b></td><td><tt>[% INCLUDE renderDiffUri contents=(bi1.revision.substr(0, 8) _ ' to ' _ bi2.revision.substr(0, 8)) %]</tt>
<b>[% bi1.name %]</b></td><td><tt>[% INCLUDE renderDiffUri contents=(bi1.revision.substr(0, 12) _ ' to ' _ bi2.revision.substr(0, 12)) %]</tt>
</td></tr>
[% ELSE %]
<tr><td>
Expand Down

0 comments on commit 4bb2f08

Please sign in to comment.