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