account for null helpers
This commit is contained in:
parent
4bb3f6fe5f
commit
594906d975
|
@ -83,7 +83,7 @@
|
||||||
<div class="binding__description">
|
<div class="binding__description">
|
||||||
{@html helper.description || ''}
|
{@html helper.description || ''}
|
||||||
</div>
|
</div>
|
||||||
<pre>{helper.example}</pre>
|
<pre>{helper.example || ''}</pre>
|
||||||
</div>
|
</div>
|
||||||
{/each}
|
{/each}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -103,7 +103,7 @@
|
||||||
<div class="description">
|
<div class="description">
|
||||||
{@html helper.description}
|
{@html helper.description}
|
||||||
</div>
|
</div>
|
||||||
<pre>{helper.example}</pre>
|
<pre>{helper.example || ''}</pre>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
{/each}
|
{/each}
|
||||||
|
|
Loading…
Reference in New Issue