Skip to content

Commit 235a944

Browse files
Merge pull request #1315 from rust-lang/compare-pr-space
Add space after PR number in compare page
2 parents 3066a5b + c714870 commit 235a944

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

site/static/compare.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ <h2>Comparing <span id="stat-header">{{stat}}</span> between <span id="before">{
340340
<div class="description-box">
341341
<div v-if="data.prev" class="description-arrow"><a v-bind:href="prevLink">&larr;</a></div>
342342
<div style="padding: 10px;">
343-
<a v-if="data.a.pr" v-bind:href="prLink(data.a.pr)">#{{data.a.pr}}</a>
343+
<span><a v-if="data.a.pr" v-bind:href="prLink(data.a.pr)">#{{data.a.pr}}</a>&nbsp;</span>
344344
<span v-if="data.a.date">{{formatDate(data.a.date)}}</span>
345345
(<a v-bind:href="commitLink(data.a.commit)">{{short(data.a)}}</a>)
346346
</div>
@@ -349,7 +349,7 @@ <h2>Comparing <span id="stat-header">{{stat}}</span> between <span id="before">{
349349
</div>
350350
<div class="description-box">
351351
<div style="padding: 10px;">
352-
<a v-if="data.b.pr" v-bind:href="prLink(data.b.pr)">#{{data.b.pr}}</a>
352+
<span><a v-if="data.b.pr" v-bind:href="prLink(data.b.pr)">#{{data.b.pr}}</a>&nbsp;</span>
353353
<span v-if="data.b.date">{{formatDate(data.b.date)}}</span>
354354
(<a v-bind:href="commitLink(data.b.commit)">{{short(data.b)}}</a>)
355355
</div>

0 commit comments

Comments
 (0)