mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-09 14:21:02 +01:00
Add <tr /> tags to Maniphest task summary tables
Summary: That's not how tables work! Test Plan: Load maniphest, do not receive a zillion console warnings in Safari. Reviewed By: aran Reviewers: aran, jungejason, tuomaspelkonen CC: aran Differential Revision: 227
This commit is contained in:
parent
03ebbccbc9
commit
7eefbfaa51
1 changed files with 29 additions and 27 deletions
|
@ -50,6 +50,7 @@ class ManiphestTaskSummaryView extends AphrontView {
|
|||
|
||||
return
|
||||
'<table class="maniphest-task-summary">'.
|
||||
'<tr>'.
|
||||
'<td class="maniphest-task-number '.$pri_class.'">'.
|
||||
'T'.$task->getID().
|
||||
'</td>'.
|
||||
|
@ -77,6 +78,7 @@ class ManiphestTaskSummaryView extends AphrontView {
|
|||
'<td class="maniphest-task-updated">'.
|
||||
phabricator_format_timestamp($task->getDateModified()).
|
||||
'</td>'.
|
||||
'</tr>'.
|
||||
'</table>';
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue