1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-26 08:42:41 +01:00

Add space in header tags

Test Plan: Double clicked on the last word of title. Tag wasn't selected.

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

Differential Revision: https://secure.phabricator.com/D5462
This commit is contained in:
Jakub Vrana 2013-03-30 10:10:30 -07:00
parent 0bcc76151e
commit 4d2cf457d4
2 changed files with 2 additions and 1 deletions

View file

@ -1 +0,0 @@
../../webroot/rsrc/js/javelin/

1
externals/javelinjs/src vendored Normal file
View file

@ -0,0 +1 @@
../../webroot/rsrc/js/javelin/

View file

@ -39,12 +39,13 @@ final class PhabricatorHeaderView extends AphrontView {
} }
if ($this->tags) { if ($this->tags) {
$header[] = ' ';
$header[] = phutil_tag( $header[] = phutil_tag(
'span', 'span',
array( array(
'class' => 'phabricator-header-tags', 'class' => 'phabricator-header-tags',
), ),
$this->tags); array_interleave(' ', $this->tags));
} }
return phutil_tag( return phutil_tag(