mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-24 05:28:18 +01:00
fix fluid diff change
Summary: when we had a change that had new data and uncommitted changes the colspan could get off. make sure to only decrement the colspan if we are actually on a new line Test Plan: http://phabricator.dev/rP1a3bf098ae4ab4f8add4af744a6b93a257851fb0 now looks good on Firefox Reviewers: vrana, epriestley Reviewed By: epriestley CC: aran, Korvin Maniphest Tasks: T2005 Differential Revision: https://secure.phabricator.com/D4109
This commit is contained in:
parent
56c401f614
commit
1922590f98
1 changed files with 1 additions and 2 deletions
|
@ -1552,7 +1552,6 @@ final class DifferentialChangesetParser {
|
||||||
$n_colspan--;
|
$n_colspan--;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if ($this->new[$ii]['type']) {
|
if ($this->new[$ii]['type']) {
|
||||||
if ($this->new[$ii]['type'] == '\\') {
|
if ($this->new[$ii]['type'] == '\\') {
|
||||||
$n_text = $this->new[$ii]['text'];
|
$n_text = $this->new[$ii]['text'];
|
||||||
|
@ -1590,8 +1589,8 @@ final class DifferentialChangesetParser {
|
||||||
),
|
),
|
||||||
'');
|
'');
|
||||||
}
|
}
|
||||||
|
$n_colspan--;
|
||||||
}
|
}
|
||||||
$n_colspan--;
|
|
||||||
}
|
}
|
||||||
$n_classes .= ' right'.$n_colspan;
|
$n_classes .= ' right'.$n_colspan;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue