Skip to content

Commit 4d2cf45

Browse files
committedMar 30, 2013
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
1 parent 0bcc761 commit 4d2cf45

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
 

‎externals/javelinjs/src

-1
This file was deleted.

‎externals/javelinjs/src

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../webroot/rsrc/js/javelin/

‎src/view/layout/PhabricatorHeaderView.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,13 @@ public function render() {
3939
}
4040

4141
if ($this->tags) {
42+
$header[] = ' ';
4243
$header[] = phutil_tag(
4344
'span',
4445
array(
4546
'class' => 'phabricator-header-tags',
4647
),
47-
$this->tags);
48+
array_interleave(' ', $this->tags));
4849
}
4950

5051
return phutil_tag(

0 commit comments

Comments
 (0)
Failed to load comments.