mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00: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:
parent
0bcc76151e
commit
4d2cf457d4
2 changed files with 2 additions and 1 deletions
1
externals/javelinjs/src
vendored
1
externals/javelinjs/src
vendored
|
@ -1 +0,0 @@
|
|||
../../webroot/rsrc/js/javelin/
|
1
externals/javelinjs/src
vendored
Normal file
1
externals/javelinjs/src
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
../../webroot/rsrc/js/javelin/
|
|
@ -39,12 +39,13 @@ final class PhabricatorHeaderView extends AphrontView {
|
|||
}
|
||||
|
||||
if ($this->tags) {
|
||||
$header[] = ' ';
|
||||
$header[] = phutil_tag(
|
||||
'span',
|
||||
array(
|
||||
'class' => 'phabricator-header-tags',
|
||||
),
|
||||
$this->tags);
|
||||
array_interleave(' ', $this->tags));
|
||||
}
|
||||
|
||||
return phutil_tag(
|
||||
|
|
Loading…
Reference in a new issue