mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-22 05:20:56 +01:00
Show blame colors on all lines, instead of only the first affected line
Summary: Fixes T10226. I just made a mistake here when rewriting this recently. Test Plan: {F1079166} Reviewers: chad, avivey Reviewed By: avivey Maniphest Tasks: T10226 Differential Revision: https://secure.phabricator.com/D15131
This commit is contained in:
parent
8f0d9c3295
commit
a5f6223553
1 changed files with 3 additions and 3 deletions
|
@ -1080,10 +1080,10 @@ final class DiffusionBrowseController extends DiffusionController {
|
|||
$revision_link = null;
|
||||
$commit_link = null;
|
||||
$before_link = null;
|
||||
$style = null;
|
||||
if ($identifier && !$line['duplicate']) {
|
||||
$style = 'background: '.$line['color'].';';
|
||||
|
||||
$style = 'background: '.$line['color'].';';
|
||||
|
||||
if ($identifier && !$line['duplicate']) {
|
||||
if (isset($commit_links[$identifier])) {
|
||||
$commit_link = $commit_links[$identifier];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue