diff --git a/src/view/layout/PhabricatorPropertyListView.php b/src/view/layout/PhabricatorPropertyListView.php index 85805969be..c5a53bf52b 100644 --- a/src/view/layout/PhabricatorPropertyListView.php +++ b/src/view/layout/PhabricatorPropertyListView.php @@ -121,19 +121,23 @@ final class PhabricatorPropertyListView extends AphrontView { $key = $spec['key']; $value = $spec['value']; + // NOTE: We append a space to each value to improve the behavior when the + // user double-clicks a property value (like a URI) to select it. Without + // the space, the label is also selected. + $items[] = phutil_tag( 'dt', array( 'class' => 'phabricator-property-list-key', ), - $key); + array($key, ' ')); $items[] = phutil_tag( 'dd', array( 'class' => 'phabricator-property-list-value', ), - $value); + array($value, ' ')); } $list = phutil_tag(