fix svelte warning for empty block (#401)
This commit is contained in:
parent
cd12c5e326
commit
0d601f924e
|
@ -3,7 +3,9 @@
|
||||||
<p>
|
<p>
|
||||||
{#each mentions as mention, i}
|
{#each mentions as mention, i}
|
||||||
{#if i > 0}
|
{#if i > 0}
|
||||||
|
<!-- empty space -->
|
||||||
|
|
||||||
|
<!-- empty space -->
|
||||||
{/if}
|
{/if}
|
||||||
<a href="/accounts/{mention.id}"
|
<a href="/accounts/{mention.id}"
|
||||||
title="@{mention.acct}"
|
title="@{mention.acct}"
|
||||||
|
|
Loading…
Reference in New Issue