mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-18 11:30:55 +01:00
Don't show "clone-name" as "Short Name"
Summary: See D16851 - there's now a difference in their meaning, so don't unite them in the UI. Test Plan: Load manage page of repos Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D16858
This commit is contained in:
parent
7165e4da90
commit
d5a72ca98e
1 changed files with 1 additions and 2 deletions
|
@ -168,8 +168,7 @@ final class DiffusionRepositoryBasicsManagementPanel
|
|||
|
||||
$short_name = $repository->getRepositorySlug();
|
||||
if ($short_name === null) {
|
||||
$short_name = $repository->getCloneName();
|
||||
$short_name = phutil_tag('em', array(), $short_name);
|
||||
$short_name = phutil_tag('em', array(), pht('No Short Name'));
|
||||
}
|
||||
$view->addProperty(pht('Short Name'), $short_name);
|
||||
|
||||
|
|
Loading…
Reference in a new issue