1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-10 08:52:39 +01:00

Left-align dates on /differential.

Test Plan: Went to /differential.

Reviewers: epriestley, chad

Reviewed By: epriestley

CC: aran, Korvin

Differential Revision: https://secure.phabricator.com/D4415
This commit is contained in:
Ricky Elrod 2013-01-11 16:56:18 -08:00 committed by epriestley
parent b0edca7294
commit ab9556345f
2 changed files with 0 additions and 8 deletions

View file

@ -11,10 +11,6 @@ final class DifferentialDateCreatedFieldSpecification
return 'Created';
}
public function getColumnClassForRevisionList() {
return 'right';
}
public function renderValueForRevisionList(DifferentialRevision $revision) {
return phabricator_date($revision->getDateCreated(), $this->getUser());
}

View file

@ -11,10 +11,6 @@ final class DifferentialDateModifiedFieldSpecification
return 'Updated';
}
public function getColumnClassForRevisionList() {
return 'right';
}
public function renderValueForRevisionList(DifferentialRevision $revision) {
return phabricator_datetime($revision->getDateModified(), $this->getUser());
}