FIX: img width and height should be in quotes (#10675)

This commit is contained in:
Joffrey JAFFEUX 2020-09-15 11:39:12 +02:00 committed by GitHub
parent 53e281a3fd
commit 15b3477145
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@
{{#if emojis.length}}
<div class='section-group'>
{{#each emojis as |emoji|}}
<img title="{{emoji.code}}" width=20 height=20 loading="lazy" class="emoji" src="{{emoji.src}}">
<img title="{{emoji.code}}" width="20" height="20" loading="lazy" class="emoji" src="{{emoji.src}}">
{{/each}}
</div>
{{/if}}