1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-19 13:22:42 +01:00

Use setTable on File Transforms tables

Summary: Minor, but nicer.

Test Plan: Review File Transforms page, see new UI.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Differential Revision: https://secure.phabricator.com/D14140
This commit is contained in:
Chad Little 2015-09-21 12:29:05 -07:00
parent d5dc4588fc
commit b8567f1764

View file

@ -116,11 +116,11 @@ final class PhabricatorFileTransformListController
$dst_box = id(new PHUIObjectBoxView()) $dst_box = id(new PHUIObjectBoxView())
->setHeaderText(pht('File Sources')) ->setHeaderText(pht('File Sources'))
->appendChild($dst_table); ->setTable($dst_table);
$src_box = id(new PHUIObjectBoxView()) $src_box = id(new PHUIObjectBoxView())
->setHeaderText(pht('Available Transforms')) ->setHeaderText(pht('Available Transforms'))
->appendChild($src_table); ->setTable($src_table);
return $this->buildApplicationPage( return $this->buildApplicationPage(
array( array(