fix svelte warning for empty block (#401)

This commit is contained in:
Nolan Lawson 2018-06-23 09:51:47 -07:00 committed by GitHub
parent cd12c5e326
commit 0d601f924e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -3,7 +3,9 @@
<p>
{#each mentions as mention, i}
{#if i > 0}
<!-- empty space -->
&nbsp;
<!-- empty space -->
{/if}
<a href="/accounts/{mention.id}"
title="@{mention.acct}"