mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-24 14:30:56 +01:00
Fix an issue with item list view icon labels (including Differential date updated times) not appearing in the UI
Summary: In D19855, I removed a no-longer-necessary link around icons in some cases, but incorrectly discarded labels in other cases. Restore labels. Test Plan: Viewed Differential revision list, saw date stamps again. Reviewers: amckinley Reviewed By: amckinley Differential Revision: https://secure.phabricator.com/D19871
This commit is contained in:
parent
66ff6d4a2c
commit
265f1f9c4d
1 changed files with 4 additions and 1 deletions
|
@ -471,7 +471,10 @@ final class PHUIObjectItemView extends AphrontTagView {
|
||||||
array(
|
array(
|
||||||
'class' => implode(' ', $classes),
|
'class' => implode(' ', $classes),
|
||||||
),
|
),
|
||||||
$icon);
|
array(
|
||||||
|
$icon,
|
||||||
|
$label,
|
||||||
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
$icons[] = phutil_tag(
|
$icons[] = phutil_tag(
|
||||||
|
|
Loading…
Reference in a new issue